Re: Get the job id for a hive query

2013-02-28 Thread Navis류승우
https://issues.apache.org/jira/browse/HIVE-3235 could be what you are searching for. 2013/3/1 Nitin Pawar > you can set this property mapred.job.name and this should set the name > for the job > > > On Thu, Feb 28, 2013 at 8:26 PM, Tim Bittersohl wrote: > >> Thanks for the response, >> >> **

Re: Get the job id for a hive query

2013-02-28 Thread Nitin Pawar
you can set this property mapred.job.name and this should set the name for the job On Thu, Feb 28, 2013 at 8:26 PM, Tim Bittersohl wrote: > Thanks for the response, > > ** ** > > I also found no way to access the job id via java thrift client, all I can > get is a query ID by the query plan

AW: Get the job id for a hive query

2013-02-28 Thread Tim Bittersohl
Thanks for the response, I also found no way to access the job id via java thrift client, all I can get is a query ID by the query planner. How to set the name of a job where a Hive query is fired with, so I can find it in the job tracker later? Tim Bittersohl Software Engineer htt

Re: Get the job id for a hive query

2013-02-28 Thread Nitin Pawar
With thrift Client I don't think you can get the jobID from hadoop (I may very well be wrong in this) the other way around this was to have a separate name for each job you fire through hive and then directly query jobtracker for the same On Thu, Feb 28, 2013 at 5:18 PM, Tim Bittersohl wrote:

AW: Get the job id for a hive query

2013-02-28 Thread Tim Bittersohl
I use java and there HiveClient of the hive library (Version 0.10.0). Tim Bittersohl Software Engineer http://www.innoplexia.de/ci/logo/inno_logo_links%20200x80.png Innoplexia GmbH Mannheimer Str. 175 69123 Heidelberg Tel.: +49 (0) 6221 7198033 Fax: +49 (0) 6221 7198034 Web: www.inn

Re: Get the job id for a hive query

2013-02-28 Thread Nitin Pawar
how are you running your hive queries? using hive cli or hive jdbc client? if you are using hive cli then whenever you fire a query and assuming it is syntactically correct and its not select * from table operation hive cli shows the job ID and an URL which points to the job tracker url for the j

AW: Get the job id for a hive query

2013-02-28 Thread Tim Bittersohl
I’m trying to get the job id of the job created with a Hive query. At the moment I can get the cluster status from the HiveClient, but I don’ find any job id in there... Tim Bittersohl Software Engineer http://www.innoplexia.de/ci/logo/inno_logo_links%20200x80.png Innoplexia GmbH Mannhe

Re: Get the job id for a hive query

2013-02-28 Thread Harsh J
The client logs print the Job ID of the spawned job and a tracking URL. Is that what you're looking for? Its printed for each stage. On Wed, Feb 27, 2013 at 11:06 PM, Tim Bittersohl wrote: > Hi, > > ** ** > > has the Hive client the possibility to give back the job id of the job > created w