Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Start Hive on Tez with llap FAILED

avatar
Explorer

WARN curator.CuratorZookeeperClient: session timeout [10000] is less than connection timeout [15000] ERROR client.ServiceClient: Error on destroy 'llap0': not found. Failed: For component llap with TARBALL artifact, path does not exist: .yarn/package/LLAP/llap-25Jan2021.tar.gz java.lang.IllegalArgumentException: For component llap with TARBALL artifact, path does not exist: .yarn/package/LLAP/llap-25Jan2021.tar.gz at org.apache.hadoop.yarn.service.provider.tarball.TarballClientProvider.validateArtifact(TarballClientProvider.java:51) at org.apache.hadoop.yarn.service.utils.ServiceApiUtil.validateComponent(ServiceApiUtil.java:279) at org.apache.hadoop.yarn.service.utils.ServiceApiUtil.validateAndResolveService(ServiceApiUtil.java:230) at org.apache.hadoop.yarn.service.client.ServiceClient.actionCreate(ServiceClient.java:523) at org.apache.hadoop.yarn.service.client.ServiceClient.actionLaunch(ServiceClient.java:515) at org.apache.hadoop.hive.llap.cli.LlapSliderUtils.startCluster(LlapSliderUtils.java:102) at org.apache.hadoop.hive.llap.cli.LlapServiceDriver.run(LlapServiceDriver.java:601) at org.apache.hadoop.hive.llap.cli.LlapServiceDriver.main(LlapServiceDriver.java:119)

3 REPLIES 3

avatar
Expert Contributor

@bigdataNico  It's a known issue with the cloudbreak deployment. Kindly refer the "Known issues: Data lake" section in the below document.

 

https://docs.cloudera.com/HDPDocuments/Cloudbreak/Cloudbreak-2.9.0/release-notes/content/cb_known-is...

 

  1. Delete the "/user/hive/.yarn/package/LLAP" file, and then create a new directory in this location with the relevant permissions for the hive user.
  2. Start HiveServer2.

Thanks,

Prakash

avatar
Explorer

First of all, thank you for your help.
But I can't find the folder of "user / hive /. Yard / package / LLAP" on the machine
I use ambari 2.7.4 hdp-3.1.4.0

avatar
Expert Contributor

You have to delete the files from HDFS use this command::hdfs dfs -rm -rf /user/hive/.yarn/package/LLAP

 

After the deleting run the below commands::

 

hdfs dfs -mkdir -p /user/hive/.yarn/package/LLAP

hdfs dfs -chown hive:hadoop /user/hive/.yarn/package/LLAP

hdfs dfs -chmod 755 /user/hive/.yarn/package/LLAP

 

Restart the Hiveserver2 after executing these commands.