<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Error on Azure-Databricks write output to blob storage account in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37408#M26345</link>
    <description>&lt;P&gt;Hello &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/84622"&gt;@TheoDeSo&lt;/a&gt;&amp;nbsp;, just simply rewrite the configuration:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;spark.conf.set("fs.azure.account.key.{storage_account}.dfs.core.windows.net", "{myStorageAccountKey}")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;use this uri to access the storage account: &lt;EM&gt;abfss://{container_name}@{storage_account}.dfs.core.windows.net/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;You can check using: dbutils.fs.ls(" abfss://{container_name}@{storage_account}.dfs.core.windows.net/")&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jul 2023 02:17:00 GMT</pubDate>
    <dc:creator>Hemant</dc:creator>
    <dc:date>2023-07-12T02:17:00Z</dc:date>
    <item>
      <title>Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37373#M26337</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;After implementing the use of Secret Scope to store Secrets in an azure key vault, i faced a problem.&lt;/P&gt;&lt;P&gt;When writting an output to the blob i get the following error:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;shaded.databricks.org.apache.hadoop.fs.azure.AzureException: Unable to access container analysis in account [REDACTED].blob.core.windows.net using anonymous credentials, and no credentials found for them in the configuration.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;After some investigation, it is related to the following config previously set in the advanced configuration of the cluster configuration:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"spark.hadoop.fs.azure.account.key.y.blob.core.windows.net", "myStorageAccountKey"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I would like to find the way to set this in the notebook level after retrieving the secret from the secret scope:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;spark.conf.set("spark.hadoop.fs.azure.account.key.y.blob.core.windows.net", "myStorageAccountKey")&lt;/LI-CODE&gt;&lt;P&gt;Unfortunatly this does not work.&lt;/P&gt;&lt;P&gt;Here below an example of how i write the output:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;df.write.format("com.crealytics.spark.excel") \
  .option("dataAddress", "'%s'!A1" %(sheetName)) \
  .option("header", "true") \
  .option("dateFormat", "yy-mm-d") \
  .option("timestampFormat", "mm-dd-yyyy hh:mm:ss") \
  .option("useHeader", "true") \
  .mode("append")  \
  .save( "%s/%s" %(output_blob_folder,outputName))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 11:44:47 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37373#M26337</guid>
      <dc:creator>TheoDeSo</dc:creator>
      <dc:date>2023-07-11T11:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37396#M26340</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/84622"&gt;@TheoDeSo&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You need to edit the Spark Config by entering the connection information for your Azure Storage account.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Enter the following:&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;spark.hadoop.fs.azure.account.key.&amp;lt;STORAGE_ACCOUNT_NAME&amp;gt;.&lt;/SPAN&gt;&lt;A href="https://blob.core.windows.net/" target="_blank" rel="noopener noreferrer"&gt;blob.core.windows.net&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&amp;lt;ACCESS_KEY&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;where &amp;lt;STORAGE_ACCOUNT_NAME&amp;gt; is your Azure Storage account name, and &amp;lt;ACCESS_KEY&amp;gt; is your storage access key.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You need to include this in your spark configs and restart the cluster to overcome this issue.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 17:23:32 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37396#M26340</guid>
      <dc:creator>Tharun-Kumar</dc:creator>
      <dc:date>2023-07-11T17:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37401#M26344</link>
      <description>&lt;P&gt;Please refer to the doc&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/azure/databricks/storage/azure-storage#azureserviceprincipal" target="_blank" rel="noopener"&gt;Connect to Azure Data Lake Storage Gen2 and Blob Storage - Azure Databricks | Microsoft Learn&lt;/A&gt;. This has the command that you can use to set the spark config from the notebook level.&lt;/P&gt;&lt;PRE&gt;service_credential = dbutils.secrets.get(scope="&amp;lt;secret-scope&amp;gt;",key="&amp;lt;service-credential-key&amp;gt;")&lt;BR /&gt;&lt;BR /&gt;spark.conf.set("fs.azure.account.auth.type.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", "OAuth")&lt;BR /&gt;spark.conf.set("fs.azure.account.oauth.provider.type.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", "org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider")&lt;BR /&gt;spark.conf.set("fs.azure.account.oauth2.client.id.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", "&amp;lt;application-id&amp;gt;")&lt;BR /&gt;spark.conf.set("fs.azure.account.oauth2.client.secret.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", service_credential)&lt;BR /&gt;spark.conf.set("fs.azure.account.oauth2.client.endpoint.&amp;lt;storage-account&amp;gt;.dfs.core.windows.net", "https://login.microsoftonline.com/&amp;lt;directory-id&amp;gt;/oauth2/token")&lt;/PRE&gt;&lt;P&gt;Replace&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&amp;lt;secret-scope&amp;gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with the Databricks secret scope name.&lt;/LI&gt;&lt;LI&gt;&amp;lt;service-credential-key&amp;gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with the name of the key containing the client's secret.&lt;/LI&gt;&lt;LI&gt;&amp;lt;storage-account&amp;gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with the name of the Azure storage account.&lt;/LI&gt;&lt;LI&gt;&amp;lt;application-id&amp;gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Application (client) ID&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for the Azure Active Directory application.&lt;/LI&gt;&lt;LI&gt;&amp;lt;directory-id&amp;gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;with the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Directory (tenant) ID&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for the Azure Active Directory application.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 21:20:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37401#M26344</guid>
      <dc:creator>Prabakar</dc:creator>
      <dc:date>2023-07-11T21:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37408#M26345</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/84622"&gt;@TheoDeSo&lt;/a&gt;&amp;nbsp;, just simply rewrite the configuration:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;spark.conf.set("fs.azure.account.key.{storage_account}.dfs.core.windows.net", "{myStorageAccountKey}")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;use this uri to access the storage account: &lt;EM&gt;abfss://{container_name}@{storage_account}.dfs.core.windows.net/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;You can check using: dbutils.fs.ls(" abfss://{container_name}@{storage_account}.dfs.core.windows.net/")&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 02:17:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37408#M26345</guid>
      <dc:creator>Hemant</dc:creator>
      <dc:date>2023-07-12T02:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37409#M26346</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/33963"&gt;@Prabakar&lt;/a&gt;&amp;nbsp; you are using the service principle here.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 03:06:22 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37409#M26346</guid>
      <dc:creator>Hemant</dc:creator>
      <dc:date>2023-07-12T03:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37436#M26355</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/84622"&gt;@TheoDeSo&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for posting your question in our community! We are happy to assist you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To help us provide you with the most accurate information, could you please take a moment to review the responses and select the one that best answers your question?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;This will also help other community members who may have similar questions in the future. Thank you for your participation and let us know if you need any further assistance!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 07:40:14 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37436#M26355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-12T07:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37446#M26360</link>
      <description>&lt;P&gt;Hello unfortunatly this is not the desired solution as this involves hardcoding the secret in the configuration of the cluster. I posted the question on stack overflow&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/76655569/databricks-not-allowing-to-write-output-to-folder-using-key-stored-in-azure-ke" target="_blank" rel="noopener"&gt;https://stackoverflow.com/questions/76655569/databricks-not-allowing-to-write-output-to-folder-using-key-stored-in-azure-ke&lt;/A&gt;&amp;nbsp;And got the desired answer.&lt;BR /&gt;&lt;BR /&gt;In the Cluster Configuration i wrote the following:&lt;/P&gt;&lt;P&gt;spark.hadoop.fs.azure.account.key.&amp;lt;account_name&amp;gt;.blob.core.windows.net {{secrets/&amp;lt;secret-scope-name&amp;gt;/&amp;lt;secret-name&amp;gt;}}&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 08:35:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37446#M26360</guid>
      <dc:creator>TheoDeSo</dc:creator>
      <dc:date>2023-07-12T08:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37448#M26361</link>
      <description>&lt;P&gt;Hi all thank you for the suggestions.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Doing This&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;spark.conf.set("fs.azure.account.key.{storage_account}.dfs.core.windows.net", "{myStorageAccountKey}")&lt;/PRE&gt;&lt;P&gt;For the hadoop configuration does not work.&lt;/P&gt;&lt;P&gt;And the suggestion of&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/39403"&gt;@Tharun-Kumar&lt;/a&gt;&amp;nbsp;would suggest to hardcode secrets in the configuration which is a big no.&lt;/P&gt;&lt;P&gt;Someone else suggested the proper solution on stack overflow which is to add in the same location&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/39403"&gt;@Tharun-Kumar&lt;/a&gt;&amp;nbsp;suggested to add this, but pointing at the secret scope at the same time:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;spark.hadoop.fs.azure.account.key.&amp;lt;account_name&amp;gt;.blob.core.windows.net {{secrets/&amp;lt;secret-scope-name&amp;gt;/&amp;lt;secret-name&amp;gt;}}&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 08:39:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/37448#M26361</guid>
      <dc:creator>TheoDeSo</dc:creator>
      <dc:date>2023-07-12T08:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error on Azure-Databricks write output to blob storage account</title>
      <link>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/99446#M39993</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Is it correct that Azure-Databricks only support to write data to Azure Data Lake Gen2 and does not support for Azure Storage Blob (&lt;SPAN&gt;StorageV2 -&amp;nbsp;&lt;/SPAN&gt;general purpose) ?&lt;/P&gt;&lt;P&gt;In my case, I can read the data from Azure Storage Blob (&lt;SPAN&gt;StorageV2 - general purpose v2) to Databricks, but when writing data back from Databricks to that Azure blob, it shows error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is my code&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;#&amp;nbsp;Define&amp;nbsp;the&amp;nbsp;path&amp;nbsp;where&amp;nbsp;you&amp;nbsp;want&amp;nbsp;to&amp;nbsp;write&amp;nbsp;the&amp;nbsp;tabl&lt;/SPAN&gt;&lt;SPAN class=""&gt;e&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;output_path&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;"wasbs://powerbiinfo@dlsupeducationdev.blob.core.w&lt;/SPAN&gt;&lt;SPAN class=""&gt;indows.net/staging/test"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;#&amp;nbsp;Write&amp;nbsp;the&amp;nbsp;DataFrame&amp;nbsp;to&amp;nbsp;the&amp;nbsp;specified&amp;nbsp;path&amp;nbsp;in&amp;nbsp;JSO&lt;/SPAN&gt;&lt;SPAN class=""&gt;N&amp;nbsp;format&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;try&lt;/SPAN&gt;&lt;SPAN class=""&gt;:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;df.write.&lt;/SPAN&gt;&lt;SPAN class=""&gt;mode&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;"overwrite"&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;json&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;output_path&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;print&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;"Write&amp;nbsp;operation&amp;nbsp;successful."&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;except&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;Exception&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;as&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;e:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;print&lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt;f&lt;/SPAN&gt;&lt;SPAN class=""&gt;"Error&amp;nbsp;writing&amp;nbsp;to&amp;nbsp;Azure&amp;nbsp;Blob&amp;nbsp;Storage:&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;{&lt;/SPAN&gt;&lt;SPAN class=""&gt;e&lt;/SPAN&gt;&lt;SPAN class=""&gt;}&lt;/SPAN&gt;&lt;SPAN class=""&gt;"&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;And error:&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Error writing to Azure Blob Storage: An error occurred while calling o451.json. : shaded.databricks.org.apache.hadoop.fs.azure.AzureException: java.lang.IllegalArgumentException: The String is not a valid Base64-encoded string. at shaded.databricks.org.apache.hadoop.fs.azure.AzureNativeFileSystemStore.createAzureStorageSession(AzureNativeFileSystemStore.java:1217)...."&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nguyenthuymo_0-1732072021647.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/13010iD74579BAC1169AA1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nguyenthuymo_0-1732072021647.png" alt="nguyenthuymo_0-1732072021647.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Any idea, please help!&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Mo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 03:10:15 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/error-on-azure-databricks-write-output-to-blob-storage-account/m-p/99446#M39993</guid>
      <dc:creator>nguyenthuymo</dc:creator>
      <dc:date>2024-11-20T03:10:15Z</dc:date>
    </item>
  </channel>
</rss>

