Search notes:

Azure Blob Storage

Blob Storage aims at storing large amount of unstructured (text or graphics) or raw data.
Blob Storage is REST based and can be accessed from anywhere in the world with HTTPS.
Often, Blob Storage is used within an Azure framework as staging area.

Types of blobs

Depending on the usage of the blobs, they can be partitioned into

Containers

Each blob (block or page) is held in a container and given a unique name within that container.
A container name must be a valid DNS name that follows the following rules:
Typically, a container groups related blobs according to their security requirements.

Partition key

The triple (account name, container name, blob name) is the partition key for a blob.
The partition key is used to partition data into ranges which can then be load-balanced across the system (but a single blob can only be served by a single server).

Copying blobs

Copy data into or from blobs with

See also

Azure Storage
Apparently, data in the Blob Storage can be queried from polybase.
Azure Data Lake Storage is built on Azure Blob Storage.
Data associated with HDInsight is stored in Azure Blob Storage by default.
Blob Storage might be used as a data provider for Azure Cognitive Search.
Blob Storage might be used as a landing zone for data that then can be retrieved from Azure Data Factory for further processing in a data pipeline.
Excel menu Data -> Get & Transform Data -> Get Data -> From Azure -> From Azure Blob Storage
AzureStorageEmulator.exe
Data in Blob Storage might be queried with U-SQL

Index