Hi dev,Apache CarbonData CI now is working for auto-checking all PRs

2016-12-05 Thread Liang Chen
Hi dev Apache CarbonData CI now is working for auto-checking all PRs. This is a job in Jenkins CI with name ApacheCarbonPRBuilder, which is running in cloud machine machine with IP http://136.243.101.176:8080/ , anybody can access this machine and check the build status and result. - When a

[jira] [Created] (CARBONDATA-496) Implement unit test cases for core.carbon.datastore package

2016-12-05 Thread Anurag Srivastava (JIRA)
Anurag Srivastava created CARBONDATA-496: Summary: Implement unit test cases for core.carbon.datastore package Key: CARBONDATA-496 URL: https://issues.apache.org/jira/browse/CARBONDATA-496 Pro

Re: About measure in carbon

2016-12-05 Thread manishgupta88
Hi Ravi, Currently we are using hive parser to parse carbon create table DDL. Hive does not support short datatype instead it supports short and byte with a different name as smallInt(16 bit) and tinyInt(8 bit) data types. But in carbon we do not support these datatypes. Do we need to handle thes

Re: select return error when filter string column in where clause

2016-12-05 Thread Lu Cao
Thank you Ravi! Qiang Cai has been working on this issue. Will let you know the progress. I have reduce the schema to only one column, but it still return the same error. Thanks, Lionel On Tue, Dec 6, 2016 at 12:34 PM, Lu Cao wrote: > Attach executor log: > > #query successed > cc.sql("select co

Re: select return error when filter string column in where clause

2016-12-05 Thread Lu Cao
Attach executor log: #query successed cc.sql("select count(*) from default.carbontest_003 where id = 'LSJW26761FS090787'").show #and 'LSJW26760GS018559', 'LSJW26761ES064611' also successed #query return error cc.sql("select count(*) from default.carbontest_003 where id = 'LSJW26763FS088491'").s

Re: select return error when filter string column in where clause

2016-12-05 Thread Ravindra Pesala
Hi, Please provide table schema, load command and sample data to reproduce this issue, you may create the JIRA for it. Regards, Ravi On 6 December 2016 at 07:05, Lu Cao wrote: > Hi Dev team, > I have loaded some data into carbondata table. But when I put the id > column(String type) in where c

select return error when filter string column in where clause

2016-12-05 Thread Lu Cao
Hi Dev team, I have loaded some data into carbondata table. But when I put the id column(String type) in where clause it always return error as below: cc.sql("select to_date(data_date),count(*) from default.carbontest_001 where id='LSJW26762FS044062' group by to_date(data_date)").show =

[jira] [Created] (CARBONDATA-495) Unify compressor interface

2016-12-05 Thread Jacky Li (JIRA)
Jacky Li created CARBONDATA-495: --- Summary: Unify compressor interface Key: CARBONDATA-495 URL: https://issues.apache.org/jira/browse/CARBONDATA-495 Project: CarbonData Issue Type: Bug Affec

Re: Why INT type is stored like BIGINT?

2016-12-05 Thread Jacky Li
Hi, As Ravindra explained, when writing to file, INT is stored using least datatype adaptively according to the actual data in the column chunk, it could be byte, or short, or int. But during decoding and encoding, it does use long (bigint) as temporary structure. I am working on a patch to op

[jira] [Created] (CARBONDATA-494) Implement unit test cases for filter.executer package

2016-12-05 Thread Anurag Srivastava (JIRA)
Anurag Srivastava created CARBONDATA-494: Summary: Implement unit test cases for filter.executer package Key: CARBONDATA-494 URL: https://issues.apache.org/jira/browse/CARBONDATA-494 Project: C