Return-Path: X-Original-To: apmail-db-derby-dev-archive@www.apache.org Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C6AC611DE4 for ; Tue, 8 Jul 2014 13:37:04 +0000 (UTC) Received: (qmail 56966 invoked by uid 500); 8 Jul 2014 13:37:04 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 56932 invoked by uid 500); 8 Jul 2014 13:37:04 -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 56874 invoked by uid 99); 8 Jul 2014 13:37:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jul 2014 13:37:04 +0000 Date: Tue, 8 Jul 2014 13:37:04 +0000 (UTC) From: "Knut Anders Hatlen (JIRA)" To: derby-dev@db.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (DERBY-6650) Lucene tests fail on compact profile 2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/DERBY-6650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14054934#comment-14054934 ] Knut Anders Hatlen commented on DERBY-6650: ------------------------------------------- It looks like it's the fix for LUCENE-5086 that makes it work on 4.8 and higher. That bug is actually fixed on 4.4, but the fixes on 4.4 and trunk were different, and only the trunk fix seems to fix the problem we're seeing. The problem appears to be that there is a call to ManagementFactory.getPlatformMBeanServer() in org.apache.lucene.util.RamUsageEstimator, and that pulls in the MBeanServer class. In Lucene 4.8 and higher, that call has been removed. > Lucene tests fail on compact profile 2 > -------------------------------------- > > Key: DERBY-6650 > URL: https://issues.apache.org/jira/browse/DERBY-6650 > Project: Derby > Issue Type: Bug > Components: Test > Affects Versions: 10.11.0.0 > Environment: java version "1.8.0_05" > Java(TM) SE Embedded Runtime Environment (build 1.8.0_05-b13, profile compact2, headless) > Java HotSpot(TM) Embedded Server VM (build 25.5-b02, mixed mode) > Reporter: Knut Anders Hatlen > > http://download.java.net/javadesktop/derby/request_5593638/javadb-task-3898689.html > {noformat} > java.sql.SQLException: The exception 'java.lang.NoClassDefFoundError: javax/management/MBeanServerConnection' was thrown while evaluating an expression. > at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(SQLExceptionFactory.java:107) > at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(SQLExceptionFactory.java:133) > at org.apache.derby.impl.jdbc.Util.seeNextException(Util.java:255) > at org.apache.derby.impl.jdbc.TransactionResourceImpl.wrapInSQLException(TransactionResourceImpl.java:431) > at org.apache.derby.impl.jdbc.TransactionResourceImpl.handleException(TransactionResourceImpl.java:353) > at org.apache.derby.impl.jdbc.EmbedConnection.handleException(EmbedConnection.java:2396) > at org.apache.derby.impl.jdbc.ConnectionChild.handleException(ConnectionChild.java:82) > at org.apache.derby.impl.jdbc.EmbedStatement.executeStatement(EmbedStatement.java:1430) > at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeStatement(EmbedPreparedStatement.java:1709) > at org.apache.derby.impl.jdbc.EmbedCallableStatement.executeStatement(EmbedCallableStatement.java:134) > at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeLargeUpdate(EmbedPreparedStatement.java:320) > at org.apache.derby.impl.jdbc.EmbedPreparedStatement.executeUpdate(EmbedPreparedStatement.java:309) > at org.apache.derbyTesting.junit.BaseJDBCTestCase.assertUpdateCount(BaseJDBCTestCase.java:1415) > at org.apache.derbyTesting.functionTests.tests.lang.LuceneSupportTest.testCreateAndQueryIndex(LuceneSupportTest.java:115) > at org.apache.derbyTesting.junit.BaseTestCase.runBare(BaseTestCase.java:118) > at org.apache.derbyTesting.junit.BaseJDBCTestCase.runBareOverridable(BaseJDBCTestCase.java:440) > at org.apache.derbyTesting.junit.BaseJDBCTestCase.runBare(BaseJDBCTestCase.java:457) > at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) > at junit.extensions.TestSetup$1.protect(TestSetup.java:21) > at junit.extensions.TestSetup.run(TestSetup.java:25) > at org.apache.derbyTesting.junit.BaseTestSetup.run(BaseTestSetup.java:57) > at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) > at junit.extensions.TestSetup$1.protect(TestSetup.java:21) > at junit.extensions.TestSetup.run(TestSetup.java:25) > at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) > at junit.extensions.TestSetup$1.protect(TestSetup.java:21) > at junit.extensions.TestSetup.run(TestSetup.java:25) > at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) > at junit.extensions.TestSetup$1.protect(TestSetup.java:21) > at junit.extensions.TestSetup.run(TestSetup.java:25) > Caused by: ERROR 38000: The exception 'java.lang.NoClassDefFoundError: javax/management/MBeanServerConnection' was thrown while evaluating an expression. > at org.apache.derby.iapi.error.StandardException.newException(StandardException.java:290) > at org.apache.derby.impl.jdbc.SQLExceptionFactory.wrapArgsForTransportAcrossDRDA(SQLExceptionFactory.java:162) > at org.apache.derby.impl.jdbc.SQLExceptionFactory.getSQLException(SQLExceptionFactory.java:74) > Caused by: java.lang.NoClassDefFoundError: javax/management/MBeanServerConnection > at org.apache.lucene.index.BufferedUpdates.(BufferedUpdates.java:53) > at org.apache.lucene.index.DocumentsWriterDeleteQueue.(DocumentsWriterDeleteQueue.java:86) > at org.apache.lucene.index.DocumentsWriterDeleteQueue.(DocumentsWriterDeleteQueue.java:82) > at org.apache.lucene.index.DocumentsWriter.(DocumentsWriter.java:115) > at org.apache.lucene.index.IndexWriter.(IndexWriter.java:772) > at org.apache.derby.optional.lucene.LuceneSupport$5.run(LuceneSupport.java:1694) > at org.apache.derby.optional.lucene.LuceneSupport$5.run(LuceneSupport.java:1689) > at java.security.AccessController.doPrivileged(Native Method) > at org.apache.derby.optional.lucene.LuceneSupport.getIndexWriter(LuceneSupport.java:1687) > at org.apache.derby.optional.lucene.LuceneSupport.createOrRecreateIndex(LuceneSupport.java:514) > at org.apache.derby.optional.lucene.LuceneSupport.createIndex(LuceneSupport.java:421) > at org.apache.derby.exe.ac7e434f4ax0147x151ex54d2x0000594f050da.g0(Unknown Source) > at org.apache.derby.impl.services.reflect.ReflectMethod.invoke(ReflectMethod.java:46) > at org.apache.derby.impl.sql.execute.CallStatementResultSet.open(CallStatementResultSet.java:75) > at org.apache.derby.impl.sql.GenericPreparedStatement.executeStmt(GenericPreparedStatement.java:470) > at org.apache.derby.impl.sql.GenericPreparedStatement.execute(GenericPreparedStatement.java:349) > at org.apache.derby.impl.jdbc.EmbedStatement.executeStatement(EmbedStatement.java:1338) > Caused by: java.lang.ClassNotFoundException: javax.management.MBeanServerConnection > at java.net.URLClassLoader$1.run(Unknown Source) > at java.net.URLClassLoader$1.run(Unknown Source) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(Unknown Source) > at java.lang.ClassLoader.loadClass(Unknown Source) > at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) > at java.lang.ClassLoader.loadClass(Unknown Source) > {noformat} -- This message was sent by Atlassian JIRA (v6.2#6252)