Re: Running hive on tez locally

2015-08-10 Thread Gopal Vijayaraghavan
> How do I point Hive to tez libraries? Is it sufficient to populate >CLASSPATH environment variables with location of tez libraries ? The easiest option there is to populate the hive-config.sh with these two parameters https://github.com/t3rmin4t0r/tez-autobuild/blob/master/Makefile#L138 Once

Re: Running hive on tez locally

2015-08-10 Thread Jason Dere
t: Re: Running hive on tez locally Thanks for the configs. When I run hive it crashes because TEZ libraries were not found. How do I point Hive to tez libraries? Is it sufficient to populate CLASSPATH environment variables with location of tez libraries ? Raajay On Fri, Aug 7, 2015 at 3:

Re: Running hive on tez locally

2015-08-07 Thread Raajay
set tez.staging-dir=/tmp; > set tez.ignore.lib.uris=true; > set tez.runtime.optimize.local.fetch=true; > set tez.local.mode=true; > set hive.execution.engine=tez;​ > > > ​ > > > > -- > *From:* Raajay > *Sent:* Friday, August 07, 201

Re: Running hive on tez locally

2015-08-07 Thread Jason Dere
; set tez.ignore.lib.uris=true; set tez.runtime.optimize.local.fetch=true; set tez.local.mode=true; set hive.execution.engine=tez;? ? From: Raajay Sent: Friday, August 07, 2015 1:06 PM To: user@hive.apache.org Subject: Running hive on tez locally I have been running

Re: Running hive on tez locally

2015-08-07 Thread Prasanth Jayachandran
Hi Can you make sure the following configs are set and appropriately pointing to your corresponding local directories? set hive.user.install.directory=file:///tmp; set fs.default.name=file:///; set fs.defaultFS=file:///; set tez.staging-dir=/tmp; set tez.ignore.lib.uris=true; set tez.runtime.opt

Running hive on tez locally

2015-08-07 Thread Raajay
I have been running Hive queries on a single node (no HDFS). I realize that the queries get compiled as map-reduce jobs and not as TEZ jobs even though "hive.execution.engine=tez" is set. Is that expected ? If yes, what is the ideal environment for debugging hive on tez? Raajay