Azure Storage Account Contd…
- Table Storage:
- This is a service that stores non-relation data (NoSQL data) in the cloud providing a key/attribute store with schemaless design
- Concepts:
- Accounts: All access to Azure Storage is done through a storage account
- Table: A Table is collection of Entitities. To Access the Table Azure Provides API’s Refer Here
- Client Libraries are in various languages
- .net Refer Here
- python Refer Here
- java Refer Here
- Client Libraries are in various languages
- Entity: An entity is a set of properties similar to database row/record. An entity in Azure Storage Account cane be of size upto 1MB
- Properties: A property is a name-value pair. Each entity can include upto 252 properties to store data
- Creating a Table Storage:
- Steps:

- Sample code to interact
- .net Refer Here
- Java Refer Here
- Node js Refer Here
- Python Refer Here
- Steps:
- Queue Storage:
-
For applications which use messaging accross application components, we can use Azure Queue Storage, as it is a message queue as a service.

-
Create Queue Storage:

-
For interacting with Queue Storage
- .net Refer Here
- Java Refer Here
- Python Refer Here
- Node Js Refer Here
-
Activity:
- Create a new resource group
exploring - Create a linux vm with size Standard_B1s
- Create a windows 2016 server with size Standard_B1s (Standard_B2s)
- When we create vm’s along with vm a disk will be created with operating system in it such disks are called as os disk

- In addition to the os disk we can also attach data disks to increase storage capacity (optional)
- OS disk or Data disk can be attached to only one vm at any given moment
- In some cases we would like to have shared storage across vm’s
- Create a new resource group
-
- Image demonstrating different disks and their usage

