kevinjqliu opened a new pull request, #13829:
URL: https://github.com/apache/iceberg/pull/13829
Closes #13819
Add `adls.tenant-id`, `adls.client-id`, and `adls.client-secret` as
configuration properties for ADLSFileIO.
These are passed to the `DataLakeFileSystemClient` builder using
ClientSecretCredential from the Azure Identity SDK:
```
TokenCredential credential = new ClientSecretCredentialBuilder()
.tenantId(conf.get("adls.tenant-id"))
.clientId(conf.get("adls.client-id"))
.clientSecret(conf.get("adls.client-secret"))
.build();
```
This credential would then be passed into the
DataLakeFileSystemClientBuilder instead of DefaultAzureCredential.
This PR needs to rebase #13825
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]