Feature Description
Azure storage services allow you to connect via connection strings. They basically contain relevant config fields in a stringified format.
Problem and Solution
Today, users need to parse connection strings manually, and then use individual fields to build a AzdlsConfig. I'd like to add an API
impl AzdlsConfig {
pub fn try_from_connection_string(conn_str: &str) -> Result<Self>
}
Additional Context
I stumbled over this while looking at adding ADLS support for apache/iceberg-rust. Other implementations like pyiceberg allow to pass the adls.connection-string configuration. I'd therefore like to add this functionality either to Iceberg Rust too, or IMO preferably to OpenDAL.
Are you willing to contribute to the development of this feature?
Feature Description
Azure storage services allow you to connect via connection strings. They basically contain relevant config fields in a stringified format.
Problem and Solution
Today, users need to parse connection strings manually, and then use individual fields to build a
AzdlsConfig. I'd like to add an APIAdditional Context
I stumbled over this while looking at adding ADLS support for apache/iceberg-rust. Other implementations like pyiceberg allow to pass the
adls.connection-stringconfiguration. I'd therefore like to add this functionality either to Iceberg Rust too, or IMO preferably to OpenDAL.Are you willing to contribute to the development of this feature?