-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature][Connector-V2][Hbase] Introduce hbase sink connector #4049
Merged
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
TyrantLucifer
changed the title
[WIP][Feature][Connector-V2][Hbase] Introduce hbase sink connector
[Feature][Connector-V2][Hbase] Introduce hbase sink connector
Feb 4, 2023
Test case: env {
job.mode = "BATCH"
execution.parallelism = 1
}
source {
FakeSource {
row.num = 200000
schema {
fields {
name = string
age = int
}
}
}
}
transform {}
sink {
Hbase {
zookeeper_quorum = "hadoop001:2181,hadoop002:2181,hadoop003:2181"
table = "seatunnel_test"
rowkey_column = ["name"]
family_name {
all_columns = seatunnel
}
}
}
Zeta: Spark: Flink: Hbase result: |
davidzollo
reviewed
Feb 5, 2023
...base/src/main/java/org/apache/seatunnel/connectors/seatunnel/hbase/sink/HbaseSinkWriter.java
Outdated
Show resolved
Hide resolved
TyrantLucifer
force-pushed
the
add-hbase-connector
branch
4 times, most recently
from
February 6, 2023 15:36
403b04a
to
6ad7bf6
Compare
hailin0
reviewed
Feb 7, 2023
...arch-e2e/src/test/java/org/apache/seatunnel/e2e/connector/elasticsearch/ElasticsearchIT.java
Outdated
Show resolved
Hide resolved
...nel-e2e/seatunnel-connector-v2-e2e/connector-hbase-e2e/src/test/resources/fake-to-hbase.conf
Show resolved
Hide resolved
...-e2e/connector-hbase-e2e/src/test/java/org/apache/seatunnel/e2e/connector/hbase/HbaseIT.java
Outdated
Show resolved
Hide resolved
...-e2e/connector-hbase-e2e/src/test/java/org/apache/seatunnel/e2e/connector/hbase/HbaseIT.java
Show resolved
Hide resolved
TyrantLucifer
force-pushed
the
add-hbase-connector
branch
from
February 7, 2023 03:22
6ad7bf6
to
2aa071c
Compare
EricJoy2048
reviewed
Feb 8, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
hailin0
approved these changes
Feb 8, 2023
EricJoy2048
approved these changes
Feb 8, 2023
harveyyue
pushed a commit
to harveyyue/seatunnel
that referenced
this pull request
Feb 27, 2023
…#4049) * [Feature][Connector-V2][Hbase] Introduce hbase sink connector * [Feature][Connector-V2][Hbase] Introduce hbase sink connector * [Feature][Connector-V2][Hbase] Add scope for connector-hbase * [Feature][Connector-V2][Hbase] Add docs * [Feature][Connector-V2][Hbase] Add e2e test case * [Feature][Connector-V2][Hbase] Update release-note * [Feature][Connector-V2][Hbase] Remove useless parameter * [Feature][Connector-V2][Hbase] Fix code style * [Feature][Connector-V2][Hbase] Test all data types * [Feature][Connector-V2][Hbase] Optimize e2e test case
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Purpose of this pull request
#3018
Check list
New License Guide
release-note
.