Write dataframe to blob using azure databricks
问题 Is there any link or sample code where we can write dataframe to azure blob storage using python (not using pyspark module). 回答1: Below is the code snippet for writing (dataframe) CSV data directly to an Azure blob storage container in an Azure Databricks Notebook. # Configure blob storage account access key globally spark.conf.set( "fs.azure.account.key.%s.blob.core.windows.net" % storage_name, sas_key) output_container_path = "wasbs://%s@%s.blob.core.windows.net" % (output_container_name,