Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Blob Storage URL : WASB:// vs HTTP://

I see that there are different kinds of URLS to access a blob storage like shown below:

wasb://[email protected]

https://[email protected]

What is the difference? what could be the reason for difference?

like image 427
Srinivas Avatar asked Mar 26 '14 08:03

Srinivas


People also ask

What is the URL for Azure Blob storage?

By default, the URL for accessing the Blob service in a storage account is https://<your account name>. blob.core.windows.net.

What is Wasb in Azure?

Windows Azure Storage Blob (WASB) is an object store service available on Azure. WASB is not supported as a default file system, but access to data in WASB is possible via the wasb connector. These steps assume that you are using an HDP version that supports the wasb cloud storage connector (HDP 2.6. 1 or newer).

What URL format can blobs be accessed from Azure?

Users or client applications can access objects in Blob storage via HTTP/HTTPS, from anywhere in the world.

What is Wasb storage?

About. Windows Azure Storage Blob (WASB) is an file system implemented as an extension built on top of the HDFS APIs and is in many ways HDFS. The WASB variation uses: SSL certificates for improved security. the storage accounts in WASB to load data instead of from local disks in HDFS.


2 Answers

From what I understand, wasb://[email protected] is used to access blob storage through HDInsight (ref: http://www.windowsazure.com/en-us/documentation/articles/hdinsight-use-blob-storage/) where as https://[email protected] is used to access blobs through clients supporting HTTP protocol (web browsers etc.).

like image 169
Gaurav Mantri Avatar answered Oct 07 '22 00:10

Gaurav Mantri


Just to refine the previous answer a bit: wasb is the hdfs compatible API on top of Azure blob storage. So, using it you can access blobs from any hdfs client, be it part of HDInsight, a self installed IaaS hadoop cluster etc.

like image 44
oneman Avatar answered Oct 06 '22 23:10

oneman