-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[Enhancement](MaxCompute)Refactoring maxCompute catalog using Storage API.(#40225 , #40888 ,#41386 ) #41610
[Enhancement](MaxCompute)Refactoring maxCompute catalog using Storage API.(#40225 , #40888 ,#41386 ) #41610
Conversation
… API. (apache#40225) Refactoring maxCompute catalog using Storage API. Storage API : https://help.aliyun.com/zh/maxcompute/user-guide/open-storage-sample-java-sdk?spm=a2c4g.11186623.0.i0 ``` The following are required: CREATE CATALOG mc PROPERTIES ( "type" = "max_compute", "mc.default.project" = "xxx", "mc.access_key" = "xxx", "mc.secret_key" = "xxxx", "mc.endpoint" = "xxxx" ); Optional parameters: Configuration Item Default Value "mc.quota" = "pay-as-you-go" "mc.split_strategy" = "byte_size" Split according to file size "mc.split_byte_size" = "268435456" You can set the file size of each split "mc.split_strategy" = "row_count" Split according to the number of rows of data "mc.split_row_count" = "1048576" You can set how many lines to read for each split ```
… maxcompute. (apache#40888) before pr apache#40225 ## Proposed changes Fixed a bug where when reading maxcompute, if there are null values in a batch, null values will always be read out.
…pute catalogs from previous versions. (apache#41386) before pr apache#40225
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TeamCity be ut coverage result: |
68a2fee
to
d1961ff
Compare
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
1 similar comment
clang-tidy review says "All clean, LGTM! 👍" |
TeamCity be ut coverage result: |
d1961ff
to
a5dcbfd
Compare
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TeamCity be ut coverage result: |
… Storage API.(apache#40225 , apache#40888 ,apache#41386 ) (apache#41610)" This reverts commit 8c0f73c.
… Storage API.(apache#40225 , apache#40888 ,apache#41386 ) (apache#41610)" This reverts commit 8c0f73c.
bp #40225 , #40888 ,#41386
Proposed changes
Among them, #40225 is the new api of mc,
#40888 is used to fix the bug when reading null between the new and old apis,
#41386 is used for compatibility between the new and old versions