https://delta.io logo
i

Ian Joiner

05/08/2023, 6:55 AM
https://github.com/delta-io/delta-rs/blob/main/rust/src/builder.rs#LL349C1-L355C2 I think we should add
wasbs
which provides TLS-encrypted access to Azure Blob Storage
👍 1
r

Robert

05/08/2023, 7:31 AM
Agreed, that the protocol should be added. Just to be clear though, the type of url has no effect on the protocol used to connect to the store. i.e. we do extract the connection info, but the way we connect to the store is always the same, regardless of the url provided.
i

Ian Joiner

05/08/2023, 7:38 AM
@Robert Well, right now if we do not specify the protocol and use wasbs in URL I assume we will error out, right?
c

Chitral Verma

05/08/2023, 7:38 AM
i believe this will have to be added to the pattern matching on url scheme. ideally this should be in object_Store crate?
r

Robert

05/08/2023, 7:39 AM
Yes, right now it would treat this as a local windows path and look for a drive called “wasbs” 😄
@Chitral Verma - once the parse_url function is available we’ll be adopting it 🙂 THere is a little more work to be done on our end whne it comes to paths handling and special characters, but we will be able to simplify ouir code some…
c

Chitral Verma

05/08/2023, 7:45 AM
great.