Re: Hive Server Load Data InPath Fails

2015-09-12 Thread Vineet Mishra
I got it worked. Thanks anyways! On Sat, Sep 12, 2015 at 1:56 AM, Takahiko Saito wrote: > What version of Hive is being used? > In the past, I can see we had the following JIRA: > https://issues.apache.org/jira/browse/HIVE-4256: JDBC2 HiveConnection > does not use the specified database. > > On

Re: Accumulo Storage Manager

2015-09-12 Thread Josh Elser
So the binary parsing definitely seems wrong. Maybe two issues there: one being the inline #binary not being recognized with the '*' map modifier and the second being the row failing to parse. I'd have to write a test to see how the HBaseStorageHandler works and see if I missed something in ha

Re: Organising Hive Scripts

2015-09-12 Thread Erwan MAS
Hi, HIVE have a the source keyword , so you can split you big huge script in multiple part . Sou you can have a script_part.hql and inside you call all you small part . source script_a.hql ; source script_b.hql ; source script_c.hql ; -- Erwan MAS