Skip to content

Commit

Permalink
fix table option.
Browse files Browse the repository at this point in the history
  • Loading branch information
BruceWong96 committed Aug 30, 2024
1 parent 6f9b35b commit ed77367
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions docs/en/connector-v2/sink/Hbase.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Output data to Hbase
| name | type | required | default value |
|--------------------|---------|----------|-----------------|
| zookeeper_quorum | string | yes | - |
| table | string | no | - |
| table | string | yes | - |
| rowkey_column | list | yes | - |
| family_name | config | yes | - |
| rowkey_delimiter | string | no | "" |
Expand Down Expand Up @@ -181,7 +181,8 @@ source {
sink {
Hbase {
zookeeper_quorum = "hbase:2181"
zookeeper_quorum = "hadoop001:2181,hadoop002:2181,hadoop003:2181"
table = "${table_name}"
rowkey_column = ["name"]
family_name {
all_columns = info
Expand Down
5 changes: 3 additions & 2 deletions docs/zh/connector-v2/sink/Hbase.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
| 名称 | 类型 | 是否必须 | 默认值 |
|--------------------|---------|------|-----------------|
| zookeeper_quorum | string | yes | - |
| table | string | no | - |
| table | string | yes | - |
| rowkey_column | list | yes | - |
| family_name | config | yes | - |
| rowkey_delimiter | string | no | "" |
Expand Down Expand Up @@ -181,7 +181,8 @@ source {
sink {
Hbase {
zookeeper_quorum = "hbase:2181"
zookeeper_quorum = "hadoop001:2181,hadoop002:2181,hadoop003:2181"
table = "${table_name}"
rowkey_column = ["name"]
family_name {
all_columns = info
Expand Down

0 comments on commit ed77367

Please sign in to comment.