I am running a Ubuntu instance to run a calculation of azure using a N-series instance. After the calculation I try to write to a Azure blob container using the wasb like URL
wasb://containername/path
I am trying to use the pyspark command
sparkSession.write.save('wasb://containername/path', format='json', mode='append')
But I receive a Java io exception from spark saying it doesn't support a wasb file system. I was wondering if anyone knows how to write to a wasb address while not using a HDInsight instance?