tajo
tajo copied to clipboard
Mirror of Apache Tajo
MongoDB Storage module for tajo storage. This is the first part of the module. It only supports reading functionality.
This patch contains following modifications: - When making partition directories, use partition name which are accepted in the format `YYYY-MM-DD HH:MM:SS.MS`. - When pruning partitions, convert UTC of EvalNode to...
See https://issues.apache.org/jira/browse/TAJO-1952 and https://github.com/apache/tajo/pull/846. I recreated a pull request because of a branch deletion mistake.
Some simple test based on unit test was done with 1M tuples and searching 1M times. Two columns, which are long and double, are used as sort key. Count above...
I replace many foreach loop with stream api.
I replace All anonymous classes with lambda expressions. Lambda syntax is not supported under Java 1.7 or earlier JVMs.
Here is prototype codes for `DirectOutputCommitter`. This PR is not ready to review, it shows my approach to implement `DirectOutputCommitter`. Current version works as following: - Register commit history to...