Work on HIVE-6009

2016-11-08 Thread naveen mahadevuni
Hi, I'm starting as a Hive contributor. I would like to work on HIVE-6009 . I found some related JIRAs HIVE-345 , HIVE-2867 and HIVE-6040

Re: Load performance with partitioned table

2016-09-18 Thread naveen mahadevuni
them? > Do you use compression on the tables? If so which? > What are the exact times and data volumes? > > > On 15 Sep 2016, at 19:56, naveen mahadevuni > wrote: > > > > Hi, > > > > I'm using ORC format for our table storage. The table has a timestamp

Load performance with partitioned table

2016-09-15 Thread naveen mahadevuni
Hi, I'm using ORC format for our table storage. The table has a timestamp column(say TS) and 25 other columns. The other ORC properties we are using arestorage index and bloom filters. We are loading 100 million records in to this table on a 4-node cluster. Our source table is a text table with C

Re: Hive ACID table error

2016-09-15 Thread naveen mahadevuni
rious error² is usually ORC complaining about some sort of data > corruption. > > On 9/14/16, 11:16 AM, "naveen mahadevuni" wrote: > > >Hi Wei, > >I'm using the hive shell. > > > >Thanks, > >Naveen > > > >On Wed, Sep 14, 2016 at 8

Re: Hive ACID table error

2016-09-14 Thread naveen mahadevuni
Hi Wei, I'm using the hive shell. Thanks, Naveen On Wed, Sep 14, 2016 at 8:01 PM, Wei Zheng wrote: > Hi Naveen, > > Which client are you using? Beeline? > > Thanks, > Wei > > On 9/14/16, 18:25, "naveen mahadevuni" wrote: > > Hi, > > I

Hive ACID table error

2016-09-14 Thread naveen mahadevuni
Hi, I'm using Hive 1,.2. From a non-ACID hive session, I performed the following operations and Hive reports 'serious problem'. CREATE TABLE test5( i int, j int) CLUSTERED BY (i) INTO 8 BUCKETS STORED AS ORC TBLPROPERTIES ('transactional'='true'); insert into test5 values(1,2); insert into t

Re: More than one table created at the same location

2016-08-31 Thread naveen mahadevuni
rch all existing tables to make > > sure > > > none of them are using the directory the new table wants to use. > > > > > > Alan. > > > > > > > On Aug 30, 2016, at 04:17, Sergey Shelukhin > > > wrote: > > > > > > &g

More than one table created at the same location

2016-08-29 Thread naveen mahadevuni
Hi, Is the following behavior a bug? I believe at least one part of it is a bug. I created two Hive tables at the same location and inserted rows in two tables. count(*) returns the correct count for each individual table, but SELECT * on one tables reads the rows from other table files too. CREA