Re: Disabling local mode optimization

2015-11-02 Thread Jason Dere
Take a look at fetch.task.conversion in https://cwiki.apache.org/confluence/display/Hive/Configuration+Properties? From: Daniel Haviv <daniel.ha...@veracity-group.com> Sent: Monday, November 02, 2015 1:16 AM To: user@hive.apache.org Subject: Re: Disabling

Re: Disabling local mode optimization

2015-11-02 Thread Daniel Haviv
Hi, I'm trying to set hive.exec.mode.local.auto.inputbytes.max & hive.exec.mode.local.auto.tasks.max to 1 or 0 but still local mode is being used instead of M/R. Any ideas? Thank you. Daniel On Thu, Sep 3, 2015 at 8:02 AM, sreebalineni . wrote: > Hi, > > Is not it

Re: Disabling local mode optimization

2015-09-03 Thread sreebalineni .
Hi, Is not it that you should set it true, by default it is disabled which is false. Hive analyzes the size of each map-reduce job in a query and may run it locally if the following thresholds are satisfied: - The total input size of the job is lower than:

Re: Disabling local mode optimization

2015-09-03 Thread Daniel Haviv
Excatly the info I needed. Thanks Daniel > On 3 בספט׳ 2015, at 09:02, sreebalineni . wrote: > > Hi, > > Is not it that you should set it true, by default it is disabled which is > false. > Hive analyzes the size of each map-reduce job in a query and may run it >

Disabling local mode optimization

2015-09-02 Thread Daniel Haviv
Hi, I would like to disable the optimization where a query that just selects data is running without mapreduce (local mode). hive.exec.mode.local.auto is set to false but hive still runs in local mode for some queries. How can I disable local mode completely? Thank you. Daniel