Hello,
I created a storage credential and an external location. Test is ok, I'm able to browse it from the portal.
I have a notebook to create a table :
%sql
CREATE OR REPLACE TABLE myschema.mytable
(
data1 string,
data2 string
)
USING DELTA LOCATION "abfss://mycontainer@myaccount.blob.core.windows.net/";
When I'm executing the notebook with a SQL warehouses cluster, it works fine ; with a standard cluster it failed with this error "Failure to initialize configuration for storage account myaccount.dfs.core.windows.net: Invalid configuration value detected for fs.azure.account.key"
I thought it was no longer needed to set fs.azure.account.key. with an external location, am I wrong ? Am I missing something ?