Re: FileNotFoundException when using hive local mode execution style

2013-06-18 Thread Guillaume Allain
> On 18 June 2013 12:25, Nitin Pawar wrote: > look at the discussion on this thread >https://groups.google.com/a/cloudera.org/forum/?fromgroups=#!topic/cdh-user/gHVq9C5H6RE Thanks for that pointer, although not related to hive 'local-mode', I have set-up the following variables in order to "keep

Re: FileNotFoundException when using hive local mode execution style

2013-06-18 Thread Nitin Pawar
look at the discussion on this thread https://groups.google.com/a/cloudera.org/forum/?fromgroups=#!topic/cdh-user/gHVq9C5H6RE On Tue, Jun 18, 2013 at 4:44 PM, Guillaume Allain wrote: > Hi all, > > I plan to use hive local in order to speed-up unit testing on (very) > small data sets. (Data is

Re: FileNotFoundException

2012-06-04 Thread Bejoy Ks
le:///' Regards Bejoy KS From: "kulkarni.swar...@gmail.com" To: "user@hive.apache.org" Cc: "user@hive.apache.org" Sent: Sunday, June 3, 2012 8:20 PM Subject: Re: FileNotFoundException Did you setup the /usr/hive/warehouse directory in hdfs and do a chmod g+w on

Re: FileNotFoundException

2012-06-03 Thread kulkarni . swarnim
Did you setup the /usr/hive/warehouse directory in hdfs and do a chmod g+w on it? That would be required before you run any queries. On Jun 3, 2012, at 1:53 AM, Павел Мезенцев wrote: > Hello all! > > I tried to create simple table in hive > > create table test (a string); > > But its failed:

Re: FileNotFoundException

2012-06-03 Thread Nitin Pawar
try setting up location in create table statement and provide valid hdfs path On Sun, Jun 3, 2012 at 12:23 PM, Павел Мезенцев wrote: > Hello all! > > I tried to create simple table in hive > > create table test (a string); > > But its failed: > FAILED: Error in metadata: MetaException(message:Go

Re: FileNotFoundException when creating table, following GettingStarted guide

2011-04-20 Thread Karl Ostmo
Turns out this was a simple issue of permissions. To fix it, I first created a group called "hive" on my system. Then I added myself to that group: kostmo@leetbook:~$ sudo usermod -aG hive kostmo Then I changed the group ownership of the warehouse directory: kostmo@leetbook:~$ sudo /home/kostmo/