Hive Over HBase one feature is there in HIVE, In HBase already logic is there to scan only one day or specific range of days The below command will help to scan in HBase Syntax: scan '<TableName>', {TIMERANGE => [<start date timestamp in Millis>, <end date timestamp in Millis>]} scan 't1', {TIMERANGE => [1303668804, 1303668904]}
Regards, Seenu. From: Manju M [mailto:manjumohapatra1...@gmail.com] Sent: 28 March 2014 PM 12:51 To: user@hive.apache.org Subject: Re: Input from Hbase into Hive partition Hbase table ( key , cf1:column1 , cf1:column2, ............cf1:column n ) key is <id >+ <reverse Timestamp> Hive mounting few columns from hbase table i want to collect a day's( 2014-03-28 ) 's data from hbase table and insert that data into hive ( partition : 2014-03-28 ) On Fri, Mar 28, 2014 at 12:16 AM, Mohammad Tariq <donta...@gmail.com<mailto:donta...@gmail.com>> wrote: Hi Manju, How are you storing your data in HBase?What is your rowkey? Warm Regards, Tariq cloudfront.blogspot.com<http://cloudfront.blogspot.com> On Fri, Mar 28, 2014 at 12:03 PM, Manju M <manjumohapatra1...@gmail.com<mailto:manjumohapatra1...@gmail.com>> wrote: How can i scan one day's data from Hbase table and insert that into Hbase partition ( date) ? is it possible?