pythonic
pythonic

Reputation: 21665

How to access the blob storage in Microsoft Azure HDInsight?

I have just created a Spark based HDInsight cluster. I have selected a blob storage that I created before, while creating the cluster. However, I have no idea how to access that blob storage from within the VM created there. I have read many different tutorials, but couldn't get a proper answer.

I can see that the default container's folders/files correspond to the HDFS directories in the VM. Is it possible to add the blob storage to the default container, so that I can also access it just like an HDFS directory?

Upvotes: 1

Views: 1987

Answers (1)

CHEEKATLAPRADEEP
CHEEKATLAPRADEEP

Reputation: 12788

You can access blobs using Azure PowerShell or Azure CLI with cmdlets.

Refer : Access blobs in Azure HDInsight.

If you want to access blobs using Azure Storage Explorer with GUI:

Refer: Azure Storage Explorer.

Upvotes: 1

Related Questions