Created 01-25-2017 08:07 PM
I installed Hive LLAP by using below setup link. Everything is configured and I got a new queue "llap". But when I am running queries from hive cli. Execution is happening in default queue and tez mode. Looks like llap works with Tez in-memory. Also, "set hive.llap.execution.mode=all" is also throwing an exception "Property not available to set". I checked hive-site.xml and property is set to "all". Not sure why it is not picked up.
Can anyone tell me how to use llap using cli or point what I am missing here? I can connect using Tableau or Squirrel tools at port 10500. But I want to test this from hive cli and perform some performance testing. I want to see the difference in execution time between llap and normal hive execution.
Also, Can I use llap with MR as execution mode?
References:
https://www.linkedin.com/pulse/llap-sub-second-queries-hive-neeraj-sabharwal
http://www.slideshare.net/HadoopSummit/llap-subsecond-analytical-queries-in-hive
Thank you.
Created on 01-26-2017 04:38 AM - edited 08-18-2019 06:19 AM
> Can anyone tell me how to use llap using cli or point what I am missing here?
You can't use LLAP using the hive CLI, since it is aimed at BI workloads. LLAP can be accessed via beeline & HiveServer2. The new URL will show up in Ambari under the Hive sidebar.
You can then copy that URL and use beeline -u '<url>' to connect to HiveServer2-Interactive, which will use LLAP.
To confirm you are on the right host, you can try doing an explain of the query and see the word "LLAP" in the explain marking parts of the query.
Created on 01-26-2017 04:38 AM - edited 08-18-2019 06:19 AM
> Can anyone tell me how to use llap using cli or point what I am missing here?
You can't use LLAP using the hive CLI, since it is aimed at BI workloads. LLAP can be accessed via beeline & HiveServer2. The new URL will show up in Ambari under the Hive sidebar.
You can then copy that URL and use beeline -u '<url>' to connect to HiveServer2-Interactive, which will use LLAP.
To confirm you are on the right host, you can try doing an explain of the query and see the word "LLAP" in the explain marking parts of the query.
Created 01-27-2017 02:28 PM
Thank you @gopal. It worked using the url. But I am facing a weird issue. Every time I execute a query using Hive llap beeline session I get connection exception and Hive LLAP shuts down. Although LLAP daemons are runnings.
Created 01-27-2017 04:14 PM
Also how to use this new HA URL to connect to Tableau?