This repository was archived by the owner on May 12, 2021. It is now read-only.
TAJO-1131: Supports Inserting or Creating table into the HBase mapped table.#232
Closed
babokim wants to merge 31 commits into
Closed
TAJO-1131: Supports Inserting or Creating table into the HBase mapped table.#232babokim wants to merge 31 commits into
babokim wants to merge 31 commits into
Conversation
Implements HBaseStorageManager and HBaseScanner.
Implements non-forward query.
…sf/tajo into TAJO-1123 Conflicts: tajo-core/src/main/java/org/apache/tajo/engine/planner/PhysicalPlannerImpl.java tajo-core/src/main/java/org/apache/tajo/master/GlobalEngine.java tajo-core/src/main/java/org/apache/tajo/master/querymaster/Repartitioner.java tajo-core/src/main/java/org/apache/tajo/master/querymaster/SubQuery.java tajo-plan/src/main/java/org/apache/tajo/plan/util/PlannerUtil.java
…-1127 Conflicts: tajo-core/src/main/java/org/apache/tajo/master/NonForwardQueryResultScanner.java tajo-core/src/test/java/org/apache/tajo/engine/planner/TestPlannerUtil.java tajo-plan/src/main/java/org/apache/tajo/plan/util/PlannerUtil.java
…sf/tajo into TAJO-1127 Conflicts: tajo-common/src/main/java/org/apache/tajo/TajoConstants.java tajo-core/src/main/java/org/apache/tajo/engine/planner/PhysicalPlannerImpl.java tajo-core/src/main/java/org/apache/tajo/engine/planner/physical/SeqScanExec.java tajo-core/src/main/java/org/apache/tajo/master/GlobalEngine.java tajo-core/src/main/java/org/apache/tajo/master/LazyTaskScheduler.java tajo-core/src/main/java/org/apache/tajo/master/NonForwardQueryResultScanner.java tajo-core/src/main/java/org/apache/tajo/master/querymaster/Repartitioner.java tajo-core/src/main/java/org/apache/tajo/master/querymaster/SubQuery.java tajo-storage/src/main/java/org/apache/tajo/storage/FileStorageManager.java tajo-storage/src/main/java/org/apache/tajo/storage/MergeScanner.java tajo-storage/src/main/java/org/apache/tajo/storage/StorageManager.java
… table. All test cases pass.
… table. Add data type verification
… table. Supporting binary split key
… table. Fix HBaseAppender unsorted bug.
… table. Support multiple rowkey field.
… table. TupleComparator error
… table. TupleComparator error
… table. Implements HBasePutAppender
… table. Implements ColumnKey, Value mapping
… table. Fix queryunit.jsp error
… table. Fix index predication bug
… table. Fix composite rowkey scanner
… table. Implements Insert into location using hbase
… table. Fix hbase region splitting
… table. Optimize HBase Scanner
… table. Add comments
…sf/tajo into TAJO-1131 Conflicts: tajo-core/src/main/java/org/apache/tajo/engine/query/QueryContext.java tajo-plan/src/main/java/org/apache/tajo/plan/util/PlannerUtil.java
… table. Change TupleComparator to BaseTupleComparator.
… table. Move hbase.version property to tajo-project/pom.xml
Member
|
Could you rebase it against the latest patch? |
…sf/tajo into TAJO-1131 Conflicts: BUILDING tajo-catalog/tajo-catalog-common/src/main/java/org/apache/tajo/catalog/CatalogUtil.java tajo-catalog/tajo-catalog-common/src/main/proto/CatalogProtos.proto tajo-core/src/main/java/org/apache/tajo/master/GlobalEngine.java tajo-storage/pom.xml tajo-storage/src/main/resources/storage-default.xml
Contributor
Author
|
I just rebase. |
Member
|
This is awesome work! This feature will make Tajo much better in various workloads and use cases. I leave comments. In addition, the patch contains not few unused imports. Please remove out them. |
… table. Remove unused import or code and change variable name.
Contributor
Author
|
@hyunsik Thanks for your review. I pushed the fetch which is applied your comment. |
Member
|
Excellent! Here is my +1 for pushing the patch to |
asfgit
pushed a commit
that referenced
this pull request
Nov 16, 2014
Member
|
@babokim Could you close this issue? The 'ticket close' command in git commit log seems to work in only |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
First, I apologize. The TAJO-1127 Implements HBaseStorageManager issue is also implemented in this issue together.
This issue has been implemented the following features:
Mapping HBase table to Tajo table.
Supports a composite rowkey
Supports creation multiple Region.
Scanning HBase table using Tajo selection query.
Inserting into HBase table using Tajo insertion or creation query.
Supports both of PUT and BULK.