Uh oh!
There was an error while loading. Please reload this page.
[feature](Vault) Support alter hdfs storage vault and alter vault's name - #38685
Conversation
doris-robot
commented
Aug 1, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
clang-tidy review says "All clean, LGTM! 👍" |
9eabcc4 to
1bbc772Compareclang-tidy review says "All clean, LGTM! 👍" |
3 similar comments
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
ByteYue
commented
Aug 1, 2024
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
doris-robot
commented
Aug 1, 2024
TPC-H: Total hot run time: 42019 ms |
doris-robot
commented
Aug 1, 2024
TPC-DS: Total hot run time: 169321 ms |
doris-robot
commented
Aug 1, 2024
ClickBench: Total hot run time: 30.31 s |
Uh oh!
There was an error while loading. Please reload this page.
| public static final String HDFS_PREFIX = "hdfs:"; | ||
| public static final String HDFS_FILE_PREFIX = "hdfs://"; | ||
| public static final HashSet<String> ALTER_CHECK_PROPERTIES = new HashSet<>(Arrays.asList( |
There was a problem hiding this comment.
for hdfs, only name and passwd can be altered
There was a problem hiding this comment.
What if the users tried to add more properties?
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
pass path format case ok resolve comment add ut
2b6553a to
b68cba9CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
ByteYue
commented
Aug 9, 2024
run buildall |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
doris-robot
commented
Aug 9, 2024
TPC-H: Total hot run time: 39858 ms |
doris-robot
commented
Aug 9, 2024
TPC-DS: Total hot run time: 201616 ms |
doris-robot
commented
Aug 9, 2024
ClickBench: Total hot run time: 30.34 s |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
ByteYue
commented
Aug 13, 2024
run buildall |
doris-robot
commented
Aug 13, 2024
TPC-H: Total hot run time: 39919 ms |
doris-robot
commented
Aug 13, 2024
TPC-DS: Total hot run time: 189400 ms |
doris-robot
commented
Aug 13, 2024
ClickBench: Total hot run time: 31.01 s |
PR approved by at least one committer and no changes requested. |
…ame (apache#38685) Previously only s3 vault can be altered. This pr adds support of hdfs storage vault. And this pr also supports to alter vault's name. usage example ``` ALTER STORAGE VAULT alter_s3_vault PROPERTIES ( "type"="S3", "s3.access_key" = "new_ak", -- change ak "s3.secrete_key" = "new_ak", -- change sk ); ALTER STORAGE VAULT alter_hdfs_vault PROPERTIES ( "type"="hdfs", "VAULT_NAME" = "alter_hdfs_vault_new_name", -- change vault name "hadoop.username" = "hdfs" -- change user name ); ```
…ame (#38685) Previously only s3 vault can be altered. This pr adds support of hdfs storage vault. And this pr also supports to alter vault's name. usage example ``` ALTER STORAGE VAULT alter_s3_vault PROPERTIES ( "type"="S3", "s3.access_key" = "new_ak", -- change ak "s3.secrete_key" = "new_ak", -- change sk ); ALTER STORAGE VAULT alter_hdfs_vault PROPERTIES ( "type"="hdfs", "VAULT_NAME" = "alter_hdfs_vault_new_name", -- change vault name "hadoop.username" = "hdfs" -- change user name ); ```
…ame (apache#38685) Previously only s3 vault can be altered. This pr adds support of hdfs storage vault. And this pr also supports to alter vault's name. usage example ``` ALTER STORAGE VAULT alter_s3_vault PROPERTIES ( "type"="S3", "s3.access_key" = "new_ak", -- change ak "s3.secrete_key" = "new_ak", -- change sk ); ALTER STORAGE VAULT alter_hdfs_vault PROPERTIES ( "type"="hdfs", "VAULT_NAME" = "alter_hdfs_vault_new_name", -- change vault name "hadoop.username" = "hdfs" -- change user name ); ```
Previously only s3 vault can be altered. This pr adds support of hdfs storage vault. And this pr also supports to alter vault's name.
usage example