Member since
09-25-2015
356
Posts
382
Kudos Received
62
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 3257 | 11-03-2017 09:16 PM | |
| 2502 | 10-17-2017 09:48 PM | |
| 5328 | 09-18-2017 08:33 PM | |
| 6084 | 08-04-2017 04:14 PM | |
| 4240 | 05-19-2017 06:53 AM |
01-06-2016
11:34 PM
If i understand you correctly, you are saying even invocation of "hive" without any arguments is stuck. That can likely happen if there is no capacity on YARN Resource Manager available. Can you check the RM UI?
... View more
01-06-2016
07:21 AM
4 Kudos
The error message is being thrown by Hive SQLStandardAuth authorization mode which disallows hive.cbo.enable to be set in the HS2 client session. As @Andrew Grande mentioned CBO should be enabled by default. For CBO to get exercised make sure stats are generated for the table in question. ANALYZE TABLE <table> [partion(key)] COMPUTE STATISTICS;
ANALYZE TABLE <table> [partion(key)] COMPUTE STATISTICS FOR COLUMNS;
... View more
01-06-2016
07:09 AM
What is your goal? The above command is to start hive cli to enable Java debugging, the expectation is that you attach your debugger to the port and then step through the code. The reason its stuck is that its waiting for you to attach the debugger.
... View more
01-05-2016
07:57 PM
2 Kudos
From the error you posted it seems that the default debug port is already taken. You can change the default port by following invocation hive --debug:port=8101
... View more
12-29-2015
06:09 AM
To compile: $JAVA_HOME/bin/java HiveJdbcClient.java To execute: $JAVA_HOME/bin/java -cp .:/usr/hdp/current/hive-client/lib/hive-jdbc.jar:/usr/hdp/current/hadoop-client/hadoop-common.jar:/usr/hdp/current/hadoop-client/hadoop-auth.jar HiveJdbcClient
... View more
12-28-2015
05:10 PM
You should be able to bring up hive shell as the login user (without su as hive) by typing hive at the terminal prompt.
... View more
12-28-2015
05:01 PM
1 Kudo
You would need the following jars in your classpath: /usr/hdp/current/hive-client/lib/hive-jdbc.jar /usr/hdp/current/hadoop-client/hadoop-common.jar /usr/hdp/current/hadoop-client/hadoop-auth.jar With these in the classpath you can compile and execute your java client.
... View more
12-22-2015
06:50 PM
You likely need a keypair file to be passed. ssh -i <keypair> root@xxxxx.cloudapp.net
... View more