Different behaviors between beeline and hive-e

0

In the command execution using the beeline connection always works, however with hive-e it does not work.

How it works:

beeline -u jdbc:hive2://aaats879454co.sistema.br:10000/sistema tez.queue.name=Desenvolvedores -n usuario01 -e "show databases";

But it does not work:

hive -e "show databases";
    
asked by anonymous 08.09.2017 / 22:24

1 answer

0

For the Hive version 1.1.0 the run worked correctly.

Important to know the version of your hive, to do this:

  

hive --version

It may be that the Hive service is in trouble.

    
22.05.2018 / 19:09