RE: Hive-Hbase integration require Hbase in Pseudo distributed ??

2011-12-02 Thread jcfolsom
Gotcha. Thanks John. If I getting running I will let you know. Original Message Subject: Re: Hive-Hbase integration require Hbase in Pseudo distributed?? From: John Sichi Date: Fri, December 02, 2011 4:51 pm To: "" As you can guess from the 0.89 dependency, there ha

Re: Understanding Hive and Hbase

2011-12-02 Thread Gabriel Eisbruch
Ok, Thank so much, I have a clear idea now Gabriel. 2011/12/2 John Sichi > Yes, everything goes through the HBase API. > > JVS > > On Dec 2, 2011, at 2:09 PM, Gabriel Eisbruch wrote: > > > Ok, so The map/reduce jobs are connnected to The regionservers? > > > > Gabriel. > > > > El dic 2, 2011 6:

Re: Understanding Hive and Hbase

2011-12-02 Thread John Sichi
Yes, everything goes through the HBase API. JVS On Dec 2, 2011, at 2:09 PM, Gabriel Eisbruch wrote: > Ok, so The map/reduce jobs are connnected to The regionservers? > > Gabriel. > > El dic 2, 2011 6:52 p.m., "John Sichi" escribió: > The queries go through the region servers, not directly to

Re: Understanding Hive and Hbase

2011-12-02 Thread Gabriel Eisbruch
Ok, so The map/reduce jobs are connnected to The regionservers? Gabriel. El dic 2, 2011 6:52 p.m., "John Sichi" escribió: > The queries go through the region servers, not directly to HDFS. > > JVS > > On Dec 2, 2011, at 10:53 AM, Gabriel Eisbruch wrote: > > > Hi everybody, > > I have a q

Re: Understanding Hive and Hbase

2011-12-02 Thread John Sichi
The queries go through the region servers, not directly to HDFS. JVS On Dec 2, 2011, at 10:53 AM, Gabriel Eisbruch wrote: > Hi everybody, > I have a question about hbase hive integration that, I have not can > found in any where: if I run a hive query, this query will read the HFiles >

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread John Sichi
As you can guess from the 0.89 dependency, there has been a lot of water under the bridge since this integration was developed. If someone would like to take on bringing it up to date, that would be great. Note that auxpath is to make the jars available in map/reduce task VM's (we don't put ev

Re: Hive ODBC driver - Cloudera not contributing

2011-12-02 Thread Carl Steinbach
Hi Li, The Cloudera ODBC driver for Apache Hive is free to use, and anyone can download it from the Cloudera support site: https://ccp.cloudera.com/display/SUPPORT/Downloads > Why Cloudera didn't contribute to open source? > Actually, Cloudera has contributed a lot to open source and will conti

Understanding Hive and Hbase

2011-12-02 Thread Gabriel Eisbruch
Hi everybody, I have a question about hbase hive integration that, I have not can found in any where: if I run a hive query, this query will read the HFiles from hdfs and run into my hadoop cluster, Will the data in my region servers (not flushed yet) be process into the query? Thank you V

RE: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread jcfolsom
I am having the same issue. Hive won't connect to HBase and throws org.apache.hadoop.hbase.MasterNotRunningException despite the fact that the master is up and running. It may only work if HBase is in distributed mode or psuedo-distributed mode. I know HBase doesn't put files into HDFS otherwise.

Hive Thrift Client - Getting the jobs IDs back

2011-12-02 Thread Shantian Purkad
Hi, We want to get the job tracker Ids back in the code for logging purpose for the queries we fire using Hive Thrift client. We also want to get some stats that Hive displays on console like n rows inserted, through the Thrift client in our application java code. Is this possible in some

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Mohammad Tariq
Anyone there, cud you please confirm if I can use hive-hbase in standalone mode??? will it work? or should i go for Pseudo distributed mode ? Regards,     Mohammad Tariq On Fri, Dec 2, 2011 at 5:54 PM, Alok Kumar wrote: > hi, > > yeah i've used > > $HIVE_HOME/bin/hive --auxpath > $HIVE_HOME/li

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Alok Kumar
hi, yeah i've used $HIVE_HOME/bin/hive --auxpath $HIVE_HOME/lib/hive-hbase-handler-*.jar,$HIVE_HOME/lib/hbase-*.jar,$HIVE_HOME/lib/zookeeper-*.jar -hiveconf hbase.master=localhost:6 Hadoop version : hadoop-0.20.203.0 Hbase version : hbase-0.90.

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Ankit Jain
Hi, have you used following command to start the hive shell. $HIVE_HOME/bin/hive --auxpath $HIVE_HOME/lib/hive-hbase-handler-*.jar,$HIVE_HOME/lib/hbase-*.jar,$HIVE_HOME/lib/zookeeper-*.jar -hiveconf hbase.master=127.0.0.1:6 If no then used above command. Regards, Ankit On Fri, Dec 2, 2011 a

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Alok Kumar
Hi, // Hadoop core-site.xml fs.default.name hdfs://localhost:9000 hadoop.tmp.dir /home/alokkumar/hadoop/tmp // hbase-site.xml hbase.rootdir file:///home/alokkumar/hbase/ with these conf Hbase/Hive are

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Ankit Jain
HI, Can you post the Hbase-site.xml and hadoop core-site.xml properties here. Regards, Ankit On Fri, Dec 2, 2011 at 3:30 PM, Alok Kumar wrote: > Hi Ankit, > > you were right, my Hbase shell/HMaster was not running though it was > coming in jps :) > > nw i've run my HMaster n Hbase shell is up.

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Alok Kumar
Hi Ankit, you were right, my Hbase shell/HMaster was not running though it was coming in jps :) nw i've run my HMaster n Hbase shell is up.. n getting this error-- Do I need zookeeper configured in standalone mode? hive> CREATE TABLE hbase_table_1(key int, value string) > STORED BY 'org.apac

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Mohammad Tariq
I am facing the same problem, the master is running though. I am able to create tables directly through Hbase and Hive shell, but when I am trying to do it using Hive and Hbase together I am facing this problem. I am using Hbase-0.90.4 and Hive-0.7.0 Regards,     Mohammad Tariq On Fri, Dec 2, 2

Re: Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Ankit Jain
I think your hbase master is not running. Open the hive shell and run command : hbase> status On Fri, Dec 2, 2011 at 2:00 PM, Alok Kumar wrote: > Hi, > > Does Hive-Hbase integration require Hbase running in pseudo-distributed > mode? > > I've build my Hadoop following this article > http://www

Hive-Hbase integration require Hbase in Pseudo distributed??

2011-12-02 Thread Alok Kumar
Hi, Does Hive-Hbase integration require Hbase running in pseudo-distributed mode? I've build my Hadoop following this article http://www.michael-noll.com/blog/2011/04/14/building-an-hadoop-0-20-x-version-for-hbase-0-90-2/ and have already replaced Hbase jar files accordingly.. I'm getting this