Member since
09-25-2015
356
Posts
382
Kudos Received
62
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2438 | 11-03-2017 09:16 PM | |
1915 | 10-17-2017 09:48 PM | |
3802 | 09-18-2017 08:33 PM | |
4507 | 08-04-2017 04:14 PM | |
3456 | 05-19-2017 06:53 AM |
08-09-2017
03:34 AM
1 Kudo
Can you post the detailed stack trace?
... View more
08-04-2017
06:34 PM
1 Kudo
So indeed it was a corrupted client, in that case please accept my first answer.
... View more
08-04-2017
06:22 PM
1 Kudo
I am assuming this is an unsecure cluster, is that right? On that machine, can you put out the complete console log from the terminal and i would suggest just starting the beeline and then put the connect statment: $ beeline
...
> !connect jdbc:hive2://<hivehost>:10000 <user> <pwd>
... View more
08-04-2017
04:14 PM
1 Kudo
The above error is more indicative of a corrupted instal of the hive client. You mentioned that you are able to connect with LDAP userid and password. In the case where you are getting the error did you launch the beeline cli from the same machine where you launched when you were successfully able to connect using LDAP credentials?
... View more
07-27-2017
11:03 PM
1 Kudo
Can you check and post what HIVE_AUX_JARS_PATH is set to in /etc/hive/conf/hive-env.sh?
... View more
07-24-2017
09:58 PM
2 Kudos
Are you interacting with an ACID table in non-ACID mode? This can happen, you could try restarting the Hive services after enabling ACID (setting hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager) and then try the query.
... View more
07-07-2017
11:18 PM
1 Kudo
Typically beeline -u "<jdbc_url>" -n <username> -w <password>, note the jdbc_url is quoted. Are you sure you did that?
... View more
07-05-2017
07:36 PM
1 Kudo
You need to catch the appropriate exception as the error indicates. Here is an example: try {
Class.forName(driverName);
} catch (ClassNotFoundException ex) {
ex.printStackTrace();
}
... View more
06-30-2017
04:52 AM
1 Kudo
Your driverName is set incorrectly, it should be "org.apache.hive.jdbc.HiveDriver".
... View more
06-12-2017
04:04 AM
1 Kudo
Is this a fresh instance? Can you run the following command on the Hive node and post the output? /usr/hdp/current/hive-server2-hive2/bin/schematool -dbType <dbtype> -initSchema -verbose
This will definitely throw more light on what is the issue here.
... View more