feat(services/azblob): Add compatibility aliases for Apache Arrow object_store#6527
Merged
Xuanwo merged 2 commits intoapache:mainfrom Aug 25, 2025
Merged
feat(services/azblob): Add compatibility aliases for Apache Arrow object_store#6527Xuanwo merged 2 commits intoapache:mainfrom
Xuanwo merged 2 commits intoapache:mainfrom
Conversation
…ect_store Enable seamless migration from Apache Arrow's object_store library by adding serde aliases for Azure Blob storage configuration fields. These aliases follow the same naming conventions used in object_store. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Split the single test_config_aliases function into 5 focused test functions: - test_container_name_aliases: Tests container name aliases - test_account_name_aliases: Tests account name aliases - test_account_key_aliases: Tests all account key aliases - test_sas_token_aliases: Tests SAS token aliases - test_endpoint_aliases: Tests endpoint aliases This improves test organization and makes it easier to debug specific alias failures. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Xuanwo
approved these changes
Aug 25, 2025
Member
Xuanwo
left a comment
There was a problem hiding this comment.
Thank you for working on this!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Enable seamless migration from Apache Arrow's object_store library by adding serde aliases for Azure Blob storage configuration fields. These aliases follow the same naming conventions used in the object_store Azure builder.
Supported Alias Mappings
containerStringazure_container_name,container_nameaccount_nameOption<String>azure_storage_account_nameaccount_keyOption<String>azure_storage_account_key,azure_storage_access_key,azure_storage_master_key,access_key,master_keysas_tokenOption<String>azure_storage_sas_key,azure_storage_sas_token,sas_keyendpointOption<String>azure_storage_endpoint,azure_endpointUnsupported Aliases
The following object_store configuration keys are not supported in OpenDAL Azure Blob service:
client_idazure_storage_client_id,azure_client_id,client_idclient_secretazure_storage_client_secret,azure_client_secret,client_secrettenant_idazure_storage_tenant_id,azure_storage_authority_id,azure_tenant_id,azure_authority_id,tenant_id,authority_idauthority_hostazure_storage_authority_host,azure_authority_host,authority_hostbearer_tokenazure_storage_token,bearer_token,tokenuse_emulatorazure_storage_use_emulator,use_emulatormsi_endpointazure_msi_endpoint,azure_identity_endpoint,identity_endpoint,msi_endpointobject_idazure_object_id,object_idmsi_resource_idazure_msi_resource_id,msi_resource_idfederated_token_fileazure_federated_token_file,federated_token_fileuse_azure_cliazure_use_azure_cli,use_azure_cliskip_signatureazure_skip_signature,skip_signatureuse_fabric_endpointazure_use_fabric_endpoint,use_fabric_endpointdisable_taggingazure_disable_tagging,disable_taggingMissing Configurations
OpenDAL Azure Blob service includes the following configurations that are not present in object_store:
rootOption<String>encryption_keyOption<String>encryption_key_sha256Option<String>encryption_algorithmOption<String>batch_max_operationsOption<usize>Usage Example
Users can now migrate from object_store configurations seamlessly:
Test Plan
Closes: N/A
Related: Similar to #6524 for S3 service
🤖 Generated with Claude Code