Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 83861 invoked from network); 1 Apr 2011 08:20:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Apr 2011 08:20:50 -0000 Received: (qmail 76001 invoked by uid 500); 1 Apr 2011 08:20:49 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 75958 invoked by uid 500); 1 Apr 2011 08:20:49 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 75858 invoked by uid 99); 1 Apr 2011 08:20:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Apr 2011 08:20:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Apr 2011 08:20:43 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id B818E8DCD1 for ; Fri, 1 Apr 2011 08:20:05 +0000 (UTC) Date: Fri, 1 Apr 2011 08:20:05 +0000 (UTC) From: "Knut Anders Hatlen (JIRA)" To: derby-dev@db.apache.org Message-ID: <1868825797.27133.1301646005750.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <412042724.11444.1301066706732.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (DERBY-5153) Intermittent ASSERT FAILED Internal Error-- statistics not found in selectivityForConglomerate when running InterruptResilienceTest MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-5153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Knut Anders Hatlen updated DERBY-5153: -------------------------------------- Attachment: D5153.java Attaching a standalone repro for this bug. If you run the D5153 class with a sane build of Derby, you should see the assert failure fairly quickly. The repro starts two threads. One that repeatedly performs a join using a table with a multi-column index, and one that repeatedly updates the index statistics. > Intermittent ASSERT FAILED Internal Error-- statistics not found in selectivityForConglomerate when running InterruptResilienceTest > ----------------------------------------------------------------------------------------------------------------------------------- > > Key: DERBY-5153 > URL: https://issues.apache.org/jira/browse/DERBY-5153 > Project: Derby > Issue Type: Bug > Components: SQL > Affects Versions: 10.8.0.0 > Reporter: Dag H. Wanvik > Attachments: D5153.java, derby.log > > > Cf the enclosed derby.log: > While executing this statement: "select * from mtTab where i=?", we see this stacktrace: > org.apache.derby.shared.common.sanity.AssertFailure: ASSERT FAILED Internal Error-- statistics not found in selectivityForConglomerate. > cd = ConglomerateDescriptor: conglomerateNumber = 1249 name = SQL110325154339720 uuid = f04340b7-012e-ed78-50c3-00005e21fe7a indexable = true > numKeys = 1 > at org.apache.derby.shared.common.sanity.SanityManager.THROWASSERT(SanityManager.java:162) > at org.apache.derby.shared.common.sanity.SanityManager.THROWASSERT(SanityManager.java:147) > at org.apache.derby.iapi.sql.dictionary.TableDescriptor.selectivityForConglomerate(TableDescriptor.java:1443) > at org.apache.derby.impl.sql.compile.PredicateList.selectivity(PredicateList.java:3903) > at org.apache.derby.impl.sql.compile.FromBaseTable.estimateCost(FromBaseTable.java:1295) > at org.apache.derby.impl.sql.compile.OptimizerImpl.estimateTotalCost(OptimizerImpl.java:2626) > at org.apache.derby.impl.sql.compile.OptimizerImpl.costBasedCostOptimizable(OptimizerImpl.java:2172) > at org.apache.derby.impl.sql.compile.OptimizerImpl.costOptimizable(OptimizerImpl.java:1985) > at org.apache.derby.impl.sql.compile.FromBaseTable.optimizeIt(FromBaseTable.java:526) > at org.apache.derby.impl.sql.compile.ProjectRestrictNode.optimizeIt(ProjectRestrictNode.java:316) > at org.apache.derby.impl.sql.compile.OptimizerImpl.costPermutation(OptimizerImpl.java:1939) > at org.apache.derby.impl.sql.compile.SelectNode.optimize(SelectNode.java:1916) > at org.apache.derby.impl.sql.compile.DMLStatementNode.optimizeStatement(DMLStatementNode.java:315) > at org.apache.derby.impl.sql.compile.CursorNode.optimizeStatement(CursorNode.java:587) > at org.apache.derby.impl.sql.GenericStatement.prepMinion(GenericStatement.java:384) > at org.apache.derby.impl.sql.GenericStatement.prepare(GenericStatement.java:85) > at org.apache.derby.impl.sql.GenericPreparedStatement.rePrepare(GenericPreparedStatement.java:229) > at org.apache.derby.impl.sql.GenericPreparedStatement.executeStmt(GenericPreparedStatement.java:409) > at org.apache.derby.impl.sql.GenericPreparedStatement.execute(GenericPreparedStatement.java:317) > at org.apache.derby.impl.jdbc.EmbedStatement.executeStatement(EmbedStatement.java:1242) > at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeStatement(EmbedPreparedStatement.java:1686) > at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeQuery(EmbedPreparedStatement.java:284) > at org.apache.derbyTesting.functionTests.tests.store.InterruptResilienceTest$WorkerThread.run(InterruptResilienceTest.java:414) > I saw this twice with the enclosed patch to InterruptResilienceTest (adds a test case in preparation for DERBY-5152) - but the error occurs before we execute that fixture, so I think the patch is irrelevant (a third and fourth execution failed to show the issue). I am posting it here in case somebody can guess what could be wrong, I'll run more experiments to see if I can reproduce it. Could it be related to our new index statistics daemon? -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira