07-05-2022 07:22 AM
We already know that we can mount Azure Data Lake Gen2 with OAuth2 using this:
configs = {"fs.azure.account.auth.type": "OAuth",
"fs.azure.account.oauth.provider.type": "org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider",
"fs.azure.account.oauth2.client.id": "",
"fs.azure.account.oauth2.client.secret": dbutils.secrets.get(scope="",key=""),
"fs.azure.account.oauth2.client.endpoint": "https://login.microsoftonline.com//oauth2/token"}
# Optionally, you can add to the source URI of your mount point.
dbutils.fs.mount(
source = "abfss://@.dfs.core.windows.net/",
mount_point = "/mnt/",
extra_configs = configs)
However, when I used wasbs instead of abfss, it gives this error:
AzureException: shaded.databricks.org.apache.hadoop.fs.azure.AzureException: Unable to access container *** in account YYY.dfs.core.windows.net using anonymous credentials, and no credentials found for them in the configuration.
Caused by: AzureException: Unable to access container *** in account YYY.dfs.core.windows.net using anonymous credentials, and no credentials found for them in the configuration.
Is it possible to mount Azure Blob Storage (not ADLS2) by OAuth2?
07-05-2022 08:03 AM
OAuth is not supported on blob. We have a feature request DB-I-3479 for the same.
07-05-2022 08:03 AM
OAuth is not supported on blob. We have a feature request DB-I-3479 for the same.
02-14-2024 07:16 AM
Is there any update on this feature request? OAuth still seems not to be working with Azure Blob Storage... Configuration works fine for ADLS gen 2, but for Azure Blob Storage still only SAS and Account key seems to be working.
07-03-2024 11:36 PM
Try replacing wasbs with abfss and dfs with blob in the URI, should work!
Passionate about hosting events and connecting people? Help us grow a vibrant local community—sign up today to get started!
Sign Up Now