-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix](iceberg) Support client.region and iceberg.rest.* properties invended credentials #57521
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
Conversation
… vended credentials
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
ClickBench: Total hot run time: 27.9 s |
FE UT Coverage ReportIncrement line coverage |
morningman
left a comment
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
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
FE Regression Coverage ReportIncrement line coverage |
…vended credentials (#57521) When using Iceberg REST catalog with vended credentials enabled: - **Polaris** returns `s3.region`, `s3.access-key-id`, etc. - **Gravitino** returns `client.region`, `s3.access-key-id`, etc. (following Iceberg official naming) Current implementation only filters properties with `s3.`, `oss.`, etc. prefixes, causing `client.region` to be filtered out, which leads to `No storage properties found for schema: s3` error.
…vended credentials (#57521) When using Iceberg REST catalog with vended credentials enabled: - **Polaris** returns `s3.region`, `s3.access-key-id`, etc. - **Gravitino** returns `client.region`, `s3.access-key-id`, etc. (following Iceberg official naming) Current implementation only filters properties with `s3.`, `oss.`, etc. prefixes, causing `client.region` to be filtered out, which leads to `No storage properties found for schema: s3` error.
…vended credentials (apache#57521) When using Iceberg REST catalog with vended credentials enabled: - **Polaris** returns `s3.region`, `s3.access-key-id`, etc. - **Gravitino** returns `client.region`, `s3.access-key-id`, etc. (following Iceberg official naming) Current implementation only filters properties with `s3.`, `oss.`, etc. prefixes, causing `client.region` to be filtered out, which leads to `No storage properties found for schema: s3` error.
…vended credentials (#57521) When using Iceberg REST catalog with vended credentials enabled: - **Polaris** returns `s3.region`, `s3.access-key-id`, etc. - **Gravitino** returns `client.region`, `s3.access-key-id`, etc. (following Iceberg official naming) Current implementation only filters properties with `s3.`, `oss.`, etc. prefixes, causing `client.region` to be filtered out, which leads to `No storage properties found for schema: s3` error.
When using Iceberg REST catalog with vended credentials enabled:
s3.region,s3.access-key-id, etc.client.region,s3.access-key-id, etc. (following Iceberg official naming)Current implementation only filters properties with
s3.,oss., etc. prefixes, causingclient.regionto be filtered out, which leads toNo storage properties found for schema: s3error.