"builder error for url" when creating an instance of a DeltaTable which is located in an azurite blob storage #2901
-
EnvironmentDelta-rs version: 0.19.1 Environment:
BugWhat happened: What you expected to happen: How to reproduce it:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello, I found out that you actually have to pass a dedicated option for using an Azurite emulated storage account container. You can do it either from environment variables AZURE_STORAGE_USE_EMULATOR="1" Or directly in source code storage_options = { "azure_storage_use_emulator": "1" }
delta_table = DeltaTable(f"az://LandingZone/DataContractName/0.0.1/ModelName", storage_options=storage_options) |
Beta Was this translation helpful? Give feedback.
Hello, I found out that you actually have to pass a dedicated option for using an Azurite emulated storage account container.
You can do it either from environment variables
AZURE_STORAGE_USE_EMULATOR="1"
Or directly in source code