I'm trying to mount an Azure Blob Storage Container to a Databricks workbook using a Key Vault-backed secret scope.
Setup:
- Created a Key Vault
- Created a Secret in Key Vault
- Created a Databricks Secret Scope
- This is known-good.
- Running
dbutils.secrets.get(scope = dbrick_secret_scope, key = dbrick_secret_name)
results in no errors - Viewing the secret in Databricks results in
[REDACTED]
- Running
Cell in Databricks:
%python
dbrick_secret_scope = "dbricks_kv_dev"
dbrick_secret_name = "scrt-account-key"
storage_account_key = dbutils.secrets.get(scope = dbrick_secret_scope, key = dbrick_secret_name)
storage_container = 'abc-test'
storage_account = 'stgdev'
dbutils.fs.mount(
source = f'abfss://{storage_container}@{storage_account}.dfs.core.windows.net/',
mount_point = f'/mnt/{storage_account}',
extra_configs = {f'fs.azure.accountkey.{storage_account}.dfs.core.windows.net:{storage_account_key}'}
)
Results:
- Error:
AttributeError: 'set' object has no attribute 'keys'
with themount_point
line ofdbutils.fs.mount()
highlighted in red. - Full error:
AttributeError Traceback (most recent call last)
<command-3166320686381550> in <module>
9 source = f'abfss://{storage_container}@{storage_account}.dfs.core.windows.net/',
10 mount_point = f'/mnt/{storage_account}',
---> 11 extra_configs = {f'fs.azure.accountkey.{storage_account}.dfs.core.windows.net:{storage_account_key}'}
12 )
/local_disk0/tmp/1625601199293-0/dbutils.py in f_with_exception_handling(*args, **kwargs)
298 def f_with_exception_handling(*args, **kwargs):
299 try:
--> 300 return f(*args, **kwargs)
301 except Py4JJavaError as e:
302 class ExecutionError(Exception):
/local_disk0/tmp/1625601199293-0/dbutils.py in mount(self, source, mount_point, encryption_type, owner, extra_configs)
389 self.check_types([(owner, string_types)])
390 java_extra_configs = \
--> 391 MapConverter().convert(extra_configs, self.sc._jvm._gateway_client)
392 return self.print_return(self.dbcore.mount(source, mount_point,
393 encryption_type, owner,
/databricks/spark/python/lib/py4j-0.10.9-src.zip/py4j/java_collections.py in convert(self, object, gateway_client)
520 HashMap = JavaClass("java.util.HashMap", gateway_client)
521 java_map = HashMap()
--> 522 for key in object.keys():
523 java_map[key] = object[key]
524 return java_map
AttributeError: 'set' object has no attribute 'keys'
Appears to be related to the extra_configs
parameters, but I'm not exactly sure what. Can anyone see what I'm missing?