[jira] [Assigned] (CARBONDATA-503) CarbonData-Cleanup-DeltaFiles-Support

2016-12-30 Thread Sujith (JIRA)

 [ 
https://issues.apache.org/jira/browse/CARBONDATA-503?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sujith reassigned CARBONDATA-503:
-

Assignee: ravikiran  (was: Sujith)

> CarbonData-Cleanup-DeltaFiles-Support
> -
>
> Key: CARBONDATA-503
> URL: https://issues.apache.org/jira/browse/CARBONDATA-503
> Project: CarbonData
>  Issue Type: Sub-task
>  Components: core, data-query, examples, sql
>Affects Versions: 0.2.0-incubating
>Reporter: Aniket Adnaik
>Assignee: ravikiran
> Fix For: 1.0.0-incubating
>
>
> Add functionality to support cleanup of delta files as a result of 
> Update/Delete operation.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (CARBONDATA-501) CarbonData-Create-Delete-DeltaFile-Support

2016-12-30 Thread Sujith (JIRA)

 [ 
https://issues.apache.org/jira/browse/CARBONDATA-501?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sujith reassigned CARBONDATA-501:
-

Assignee: Manohar Vanam  (was: Sujith)

> CarbonData-Create-Delete-DeltaFile-Support
> --
>
> Key: CARBONDATA-501
> URL: https://issues.apache.org/jira/browse/CARBONDATA-501
> Project: CarbonData
>  Issue Type: Sub-task
>  Components: core, data-query, examples, sql
>Affects Versions: 0.2.0-incubating
>Reporter: Aniket Adnaik
>Assignee: Manohar Vanam
> Fix For: 1.0.0-incubating
>
>
> Add support to create Delete Delta files in order to support Update/Delete 
> functionality for CarbonData table.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (CARBONDATA-502) CarbonData-Create-Update-DeltaFile-Support

2016-12-30 Thread Sujith (JIRA)

 [ 
https://issues.apache.org/jira/browse/CARBONDATA-502?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sujith reassigned CARBONDATA-502:
-

Assignee: ravikiran  (was: Sujith)

> CarbonData-Create-Update-DeltaFile-Support
> --
>
> Key: CARBONDATA-502
> URL: https://issues.apache.org/jira/browse/CARBONDATA-502
> Project: CarbonData
>  Issue Type: Sub-task
>  Components: core, data-query, examples, sql
>Affects Versions: 0.2.0-incubating
>Reporter: Aniket Adnaik
>Assignee: ravikiran
> Fix For: 1.0.0-incubating
>
>
> Add functionality to create Update Delta files to support update operation on 
> CarbonData table. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (CARBONDATA-504) CarbonData-Cleanup-DeltaFiles-Support

2016-12-30 Thread Sujith (JIRA)

 [ 
https://issues.apache.org/jira/browse/CARBONDATA-504?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sujith reassigned CARBONDATA-504:
-

Assignee: ravikiran  (was: Sujith)

> CarbonData-Cleanup-DeltaFiles-Support
> -
>
> Key: CARBONDATA-504
> URL: https://issues.apache.org/jira/browse/CARBONDATA-504
> Project: CarbonData
>  Issue Type: Sub-task
>  Components: core, data-query, examples, sql
>Affects Versions: 0.2.0-incubating
>Reporter: Aniket Adnaik
>Assignee: ravikiran
> Fix For: 1.0.0-incubating
>
>
> Add functionality to support cleanup of delta files as a result of 
> Update/Delete operation.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (CARBONDATA-509) CarbonDatat-Compaction-Update-DeltaFiles

2016-12-30 Thread Sujith (JIRA)

 [ 
https://issues.apache.org/jira/browse/CARBONDATA-509?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Sujith reassigned CARBONDATA-509:
-

Assignee: ravikiran  (was: Sujith)

> CarbonDatat-Compaction-Update-DeltaFiles
> 
>
> Key: CARBONDATA-509
> URL: https://issues.apache.org/jira/browse/CARBONDATA-509
> Project: CarbonData
>  Issue Type: Sub-task
>  Components: core, data-query, examples, sql
>Affects Versions: 0.2.0-incubating
>Reporter: Aniket Adnaik
>Assignee: ravikiran
> Fix For: 1.0.0-incubating
>
>
> Add functionality to compact multiple Update delta files as part of 
> Update/Delete feature.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (CARBONDATA-527) Greater than/less-than/Like filters optimization for dictionary columns

2016-12-12 Thread Sujith (JIRA)
Sujith created CARBONDATA-527:
-

 Summary: Greater than/less-than/Like filters optimization for 
dictionary columns
 Key: CARBONDATA-527
 URL: https://issues.apache.org/jira/browse/CARBONDATA-527
 Project: CarbonData
  Issue Type: Improvement
Reporter: Sujith


Current design 
In greater than/less-than/Like filters, system first iterates each row present 
in the dictionary cache for identifying valid filter actual members  by 
applying the filter expression , once evaluation done system will hold the list 
of identified valid filter actual member values(String), now in next step again 
 system will look up the dictionary cache in order to identify the dictionary 
surrogate values of the identified members. this look up is an additional cost 
to our system even though the look up methodology is an binary search in 
dictionary cache.
 
Proposed design/solution:
Identify the dictionary surrogate values in filter expression evaluation step 
itself  when actual dictionary values will be scanned for identifying valid 
filter members .

Keep a dictionary counter variable which will be increased  when system 
iterates through  the dictionary cache in order to retrieve each actual member 
stored in dictionary cache , after this system will evaluate each row against 
the filter expression to identify whether its a valid filter member or not, 
while doing this process itself counter value can be taken as valid selected 
dictionary value since the actual member values and its  dictionary values will 
be kept in same order in dictionary cache as the iteration order.

thus it will eliminate the further dictionary look up step which is required  
to retrieve the dictionary surrogate value against identified actual valid 
filter member. this can also increase significantly the filter query 
performance of such filter queries which require expression evaluation to 
identify it the filter members by looking up dictionary cache, like greater 
than/less-than/Like filters .

Note : this optimization is applicable for dictionary columns.




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (CARBONDATA-321) Query is failing on the change of blocklet size

2016-10-17 Thread Sujith (JIRA)
Sujith created CARBONDATA-321:
-

 Summary: Query is failing on the change of  blocklet size 
 Key: CARBONDATA-321
 URL: https://issues.apache.org/jira/browse/CARBONDATA-321
 Project: CarbonData
  Issue Type: Bug
Reporter: Sujith
Assignee: Sujith


If user changes the blocklet size the queries will be failed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (CARBONDATA-270) [Filter Optimization] double data type value comparison optimization

2016-09-23 Thread Sujith (JIRA)
Sujith created CARBONDATA-270:
-

 Summary: [Filter Optimization] double data type value comparison 
optimization
 Key: CARBONDATA-270
 URL: https://issues.apache.org/jira/browse/CARBONDATA-270
 Project: CarbonData
  Issue Type: Improvement
  Components: core
Reporter: Sujith
Assignee: Sujith
Priority: Minor


EqualsToExpression evaluation for double values first check for the equality of 
nan values and then the double value comparison happens, since nan comparison 
scenarios are rare we can push the comparison of nan after the double value 
comparison.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (CARBONDATA-252) Filter result is not proper when Double data type values with 0.0 and -0.0 will be used

2016-09-17 Thread Sujith (JIRA)
Sujith created CARBONDATA-252:
-

 Summary: Filter result is not proper when Double data type values 
with 0.0 and -0.0 will be used
 Key: CARBONDATA-252
 URL: https://issues.apache.org/jira/browse/CARBONDATA-252
 Project: CarbonData
  Issue Type: Bug
Reporter: Sujith
Assignee: Sujith
Priority: Minor


Filter result is not proper when Double data type values with 0.0 and -0.0 will 
be used in filter model



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)