RE: Can WebHCat show non-MapReduce jobs?

2015-03-25 Thread Xiaoyong Zhu
Thanks for the reply, Eugene. However, when I try to list the jobs via WebHCat (via /templeton/v1/jobs): [{"id":"job_1427201295241_0001","detail":null},{"id":"job_1427201295241_0003","detail":null},{"id":"job_1427201295241_0005","detail":null}] As you can see, there are three jobs there: 0001,000

Re:

2015-03-25 Thread Al Pivonka
Why Who's emailing you On Mar 25, 2015 6:59 PM, "Alan Gates" wrote: > If you want off of the list send email to user-unsubscr...@hive.apache.org > > Alan. > > jake lawson > March 25, 2015 at 15:45 > Stop emailing me > >

Re:

2015-03-25 Thread Alan Gates
If you want off of the list send email to user-unsubscr...@hive.apache.org Alan. jake lawson March 25, 2015 at 15:45 Stop emailing me

[no subject]

2015-03-25 Thread jake lawson
Stop emailing me

Re: Executing HQL files from JAVA application.

2015-03-25 Thread Steve Howard
I would argue that executing arbitrary code from a random remote server has just increased your security scope footprint in terms of the need to control another access point. Purely out of curiosity, is there a compelling architectural reason or environment limitation that results in your need

Re: Intermittent BindException during long MR jobs

2015-03-25 Thread Krishna Rao
Thanks for the responses. In our case the port is 0, and so from the link Ted mentioned it says that a collision is highly unlikely: "If the port is "0", then the OS is looking for any free port -so the port-in-use and port-below-1024 problems are high

Re: How to read Protobuffers in Hive

2015-03-25 Thread Edward Capriolo
You may be able to use: https://github.com/edwardcapriolo/hive-protobuf (Use the branch not master) This code is based on the avro support. It works well even with nested objects. On Wed, Mar 25, 2015 at 12:28 PM, Lukas Nalezenec < lukas.naleze...@firma.seznam.cz> wrote: > Hi, > I am trying

Re: Can WebHCat show non-MapReduce jobs?

2015-03-25 Thread Eugene Koifman
https://cwiki.apache.org/confluence/display/Hive/WebHCat+Reference+Jobs should produce all jobs (assuming the calling user has permissions to see them). templeton.Server.showJobList() has detailed JavaDoc From: Xiaoyong Zhu mailto:xiaoy...@microsoft.com>> Reply-To: "user@hive.apache.org

How to read Protobuffers in Hive

2015-03-25 Thread Lukas Nalezenec
Hi, I am trying to write Serde + ObjectInspectors for reading Protobuffers in Hive. I tried to use class ProtocolBuffersStructObjectInspector from Hive but it last worked with old protobuffer version 2.3. I tried to use ObjectInspector from Twitter Elephant-bird but it does not work too. It l

RE: Executing HQL files from JAVA application.

2015-03-25 Thread Amal Gupta
Hi Gopal, Thanks a lot. Connectivity to the HiveServer2 was not an issue. We were able to connect using the example that you shared and using Beeline. The issue is a script execution from java app. May be I missed something, but I was not able to find an efficient and elegant way to execute hi

Can WebHCat show non-MapReduce jobs?

2015-03-25 Thread Xiaoyong Zhu
It seems that WebHCat could only show the Map Reduce jobs - for example, if I submit a Hive on Tez job via WebHCat, I can only get the TempletonControllerJob ID (which is a MAPREDUCE job) but I cannot get the Tez job ID (which is launched by TempletonControllerJob). Is this by design? Is there