Blob storage in Microsoft Azure offers an effective solution for managing large volumes of unstructured data. Though the term “blob”may not sound appealing, it refers to “binary large object”storage designed for scalability and cost-effectiveness.
What Is Blob Storage
Azure Blob Storage allows you to store a wide range of data types, such as videos, images, and documents, in a cloud environment. It’s particularly beneficial for backing up data and performing data analysis on large datasets. However, before you can utilize blob storage, you must first create a storage account and a container.
Creating a Storage Account
Here are the steps to create a storage account in Azure:
- Click on the “Menu” icon (three horizontal lines) at the top-left and select “Storage accounts.”
- Choose the “+ Create” option.
- Fill out the required fields, including your Resource Group and Storage Account Name. Select “Azure Blob Storage” from the Primary Service dropdown.
- Click “Review + Create” and, once the validation is completed, select the “Create” button. Wait a few minutes for deployment.
Creating a Container
With your storage account in place, follow these steps to create a container:
- Go back to the “Menu” and select “Storage accounts.”
- Click on your created storage account.
- Under “Data storage,” select “Containers.”
- Click the “+ Container” button.
- Name your container and hit the “Create” button.
You now have a functional container for your blob files.
Uploading a Block Blob
To upload data to your container, follow these steps:
- Select your storage account and choose the “Containers” option.
- Select your created container and click the “Upload” button.
- Upload files by either dragging them into the designated space or browsing your device for files.
- Utilize the “Advanced” options if needed, such as placing the blob in a specific virtual folder.
- Click the “Upload” button to complete the process.
Azure allows you to upload multiple blobs, with a maximum capacity of 500 TB per container. You can also share or delete blobs as necessary.
Leave a Reply