[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version [Spark Branch]

2015-01-30 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Fix Version/s: (was: spark-branch)

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version [Spark Branch]
 

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark
Affects Versions: spark-branch
Reporter: Pierre Yin
Assignee: Pierre Yin
 Attachments: HIVE-9198.1-spark.patch, hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version [Spark Branch]

2015-01-30 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Attachment: HIVE-9198.1-spark.patch

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version [Spark Branch]
 

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark
Affects Versions: spark-branch
Reporter: Pierre Yin
Assignee: Pierre Yin
 Attachments: HIVE-9198.1-spark.patch, HIVE-9198.1-spark.patch, 
 hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2015-01-30 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Affects Version/s: spark-branch

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark
Affects Versions: spark-branch
Reporter: Pierre Yin
Assignee: Pierre Yin
 Fix For: spark-branch

 Attachments: HIVE-9198.1-spark.patch, hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2015-01-30 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Component/s: (was: spark-branch)

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark
Affects Versions: spark-branch
Reporter: Pierre Yin
Assignee: Pierre Yin
 Fix For: spark-branch

 Attachments: HIVE-9198.1-spark.patch, hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version [Spark Branch]

2015-01-30 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Summary: Hive reported exception because that hive's derby version conflict 
with spark's derby version [Spark Branch]  (was: Hive reported exception 
because that hive's derby version conflict with spark's derby version )

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version [Spark Branch]
 

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark
Affects Versions: spark-branch
Reporter: Pierre Yin
Assignee: Pierre Yin
 Fix For: spark-branch

 Attachments: HIVE-9198.1-spark.patch, hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2015-01-30 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Assignee: Pierre Yin

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
Assignee: Pierre Yin
 Fix For: spark-branch

 Attachments: HIVE-9198.1-spark.patch, hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:341)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version [Spark Branch]

2015-01-30 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Issue Type: Sub-task  (was: Bug)
Parent: HIVE-7292

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version [Spark Branch]
 

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Sub-task
  Components: Spark
Affects Versions: spark-branch
Reporter: Pierre Yin
Assignee: Pierre Yin
 Attachments: HIVE-9198.1-spark.patch, HIVE-9198.1-spark.patch, 
 hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Pierre Yin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pierre Yin updated HIVE-9198:
-
Component/s: spark-branch

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin

 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:341)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPersistenceManager(ObjectStore.java:370)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Pierre Yin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pierre Yin updated HIVE-9198:
-
Fix Version/s: spark-branch
   Status: Patch Available  (was: Open)

Filter derby out of CLASSPATH in bin/hive

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
 Fix For: spark-branch

 Attachments: hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Pierre Yin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pierre Yin updated HIVE-9198:
-
Attachment: hive.patch

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
 Fix For: spark-branch

 Attachments: hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:341)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Pierre Yin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pierre Yin updated HIVE-9198:
-
Status: Open  (was: Patch Available)

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
 Fix For: spark-branch

 Attachments: hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:341)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Pierre Yin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pierre Yin updated HIVE-9198:
-
Attachment: hive.patch

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
 Fix For: spark-branch

 Attachments: hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:341)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Pierre Yin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pierre Yin updated HIVE-9198:
-
Attachment: (was: hive.patch)

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
 Fix For: spark-branch

 Attachments: hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:341)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Pierre Yin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Pierre Yin updated HIVE-9198:
-
Status: Patch Available  (was: Open)

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
 Fix For: spark-branch

 Attachments: hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at 
 org.apache.hadoop.hive.metastore.ObjectStore.getPMF(ObjectStore.java:341)
 at 
 

[jira] [Updated] (HIVE-9198) Hive reported exception because that hive's derby version conflict with spark's derby version

2014-12-23 Thread Xuefu Zhang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-9198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Xuefu Zhang updated HIVE-9198:
--
Attachment: HIVE-9198.1-spark.patch

Upload the same patch with correct name to trigger test run.

 Hive reported exception because that hive's derby version conflict with 
 spark's derby version 
 --

 Key: HIVE-9198
 URL: https://issues.apache.org/jira/browse/HIVE-9198
 Project: Hive
  Issue Type: Bug
  Components: Spark, spark-branch
Reporter: Pierre Yin
 Fix For: spark-branch

 Attachments: HIVE-9198.1-spark.patch, hive.patch


 Spark depends on derby-10.10.1.1 while hive-on-spark depneds on 
 derby-10.11.1.1. They will be conflict. Maybe we can adapt the classpath in 
 bin/hive.
 The detailed bug is described as bellows.
 1. get spark-1.2.0-rc2 code and build spark-assembly-1.2.0-hadoop2.4.1.jar
 2. get latest code from hive and make packages.
 3. run hive --auxpath /path/to/spark-assembly-*.jar
 Hive report the following exception:
 Logging initialized using configuration in 
 jar:file:/home/realityload/hive-0.15.0-SNAPSHOT/lib/hive-common-0.15.0-SNAPSHOT.jar!/hive-log4j.properties
 Exception in thread main java.lang.RuntimeException: 
 java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:449)
 at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:634)
 at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:578)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
 Caused by: java.lang.RuntimeException: Unable to instantiate 
 org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1481)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.init(RetryingMetaStoreClient.java:64)
 at 
 org.apache.hadoop.hive.metastore.RetryingMetaStoreClient.getProxy(RetryingMetaStoreClient.java:74)
 at 
 org.apache.hadoop.hive.ql.metadata.Hive.createMetaStoreClient(Hive.java:2674)
 at org.apache.hadoop.hive.ql.metadata.Hive.getMSC(Hive.java:2693)
 at 
 org.apache.hadoop.hive.ql.session.SessionState.start(SessionState.java:430)
 ... 7 more
 Caused by: java.lang.reflect.InvocationTargetException
 at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native 
 Method)
 at 
 sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
 at 
 org.apache.hadoop.hive.metastore.MetaStoreUtils.newInstance(MetaStoreUtils.java:1479)
 ... 12 more
 Caused by: javax.jdo.JDOFatalInternalException: Error creating transactional 
 connection factory
 NestedThrowables:
 java.lang.reflect.InvocationTargetException
 at 
 org.datanucleus.api.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:587)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.freezeConfiguration(JDOPersistenceManagerFactory.java:788)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.createPersistenceManagerFactory(JDOPersistenceManagerFactory.java:333)
 at 
 org.datanucleus.api.jdo.JDOPersistenceManagerFactory.getPersistenceManagerFactory(JDOPersistenceManagerFactory.java:202)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at 
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at 
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at javax.jdo.JDOHelper$16.run(JDOHelper.java:1965)
 at java.security.AccessController.doPrivileged(Native Method)
 at javax.jdo.JDOHelper.invoke(JDOHelper.java:1960)
 at 
 javax.jdo.JDOHelper.invokeGetPersistenceManagerFactoryOnImplementation(JDOHelper.java:1166)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:808)
 at 
 javax.jdo.JDOHelper.getPersistenceManagerFactory(JDOHelper.java:701)
 at