This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 111
TAJO-2087: Support DirectOutputCommitter for AWS S3 file system #979
Open
blrunner
wants to merge
49
commits into
apache:master
Choose a base branch
from
blrunner:direct-output-committer
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
…into direct-output-committer
blrunner
changed the title
TAJO-2087: Implement DirectOutputCommitter
TAJO-2087: Support DirectOutputCommitter for AWS S3 file system
Mar 16, 2016
…into direct-output-committer
…into direct-output-committer
…into direct-output-committer
…into direct-output-committer
…into direct-output-committer
…into direct-output-committer
… files by final status of query.
I designed the table of direct output commit history as following:
Implemented necessary codes to
Not yet implemented unit test cases for failed queries. |
…into direct-output-committer
…in query fail case
I implemented unit test cases for verifying following cases.
For the reference, I found that outputs of |
Added a document for DirectOutputCommitter as follows. |
…into direct-output-committer
…into direct-output-committer
…into direct-output-committer
…into direct-output-committer
Testing with S3 finished successfully as following:
|
…into direct-output-committer
…into direct-output-committer Conflicts: tajo-core-tests/src/test/java/org/apache/tajo/engine/query/TestTablePartitions.java
…into direct-output-committer Conflicts: tajo-catalog/tajo-catalog-server/src/main/resources/schemas/mariadb/mariadb.xml tajo-core/src/main/java/org/apache/tajo/master/TajoMaster.java
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.
Here is prototype codes for
DirectOutputCommitter
. This PR is not ready to review, it shows my approach to implementDirectOutputCommitter
. Current version works as following:TajoMaster
starting, it will check the status of query histories to catalog. If it find running query, it will delete committed files and update the status of query history (TODO).