Emitting counters from a serde.

2015-02-11 Thread Karan Kumar
Hi I wanted to emit counters from a serde. According to my understanding the Serializer and the DeSerializer is not Map Reduce context aware. Is there any other way that I can emit counters from a serde. -- Thanks Karan

Error while trying to debug Hive: "Cannot load this JVM TI agent twice..."

2015-02-11 Thread Luke Lovett
Hello Hive User Mailing List, I'm trying to debug a custom InputFormat that I'm using in Hive. I'm using version 0.12.0 of Hive and Hadoop 2.4.1. I'm having trouble attaching a debugger to my InputFormat class inside the Hive server. My session looks like this: $ ./hive-0.12.0/bin/hive --de

Re: [ANNOUNCE] New Hive Committers -- Chao Sun, Chengxiang Li, and Rui Li

2015-02-11 Thread Sergey Shelukhin
Congrats! On 15/2/10, 19:00, "Xu, Cheng A" wrote: >Congrats! > >-Original Message- >From: Li, Rui [mailto:rui...@intel.com] >Sent: Wednesday, February 11, 2015 10:26 AM >To: user@hive.apache.org; d...@hive.apache.org >Subject: RE: [ANNOUNCE] New Hive Committers -- Chao Sun, Chengxiang Li

Re: ALTER TABLE xyz RECOVER PARTITIONS not working ...

2015-02-11 Thread praveen akinapally
Hi Joshua, MSCK REPAIR TABLE source_system; will work. Thanks and Regards, Praveen Akinapally. On Mon, Feb 2, 2015 at 8:42 AM, Joshua Eldridge wrote: > I'm hoping someone else has had this problem. I tried searching, but > couldn't find anything ... > > I'm running Hive Version 0.13.1 on EMR >

Re: Window Function with Ignore Nulls?

2015-02-11 Thread praveen akinapally
Hi Hulbert, Select id, last_value(address,true) over (partition by id order by file_date) as address from address_table; works in Hive 0.13.1. Not sure about Hive 0.11. Try and let me know. Regards, Praveen Akinapally On Fri, Dec 19, 2014 at 5:43 AM, Hulbert, Leland wrote: > Hi, >