Currently I am running my App in Azure VM which connects to HDInsight Spark cluster with username as hdfs.
I have created HDInsight Spark cluster with primary storage type as Azure Storage alias WASB.
I believe following methods are available to authenticate WASB storage:-
- Storage Access Keys- I get Storage key from Azure Storage account and used as follows in core-site.xml
<property> <name>fs.azure.account.key.StorageAccountName.blob.core.windows.net</name> <value>Storage access key here</value> </property>
SAS token generation form - Refer
SAS token, Blob, File, Queue, File URLs here - Refer
How can I use the above SAS credentials like as Storage Access Keys in core-site.xml or where it should be used in my application ?