Skip to main content

Azure Storage Services

 Azure Storage Services:

Describe products available for Storage such as Blob Storage, File Storage, Queue Storage, Table Storage, Disk Storage, and Storage Tiers

Data Types

Structured - Data that can be represented using tables with very strict schema. Each row must follow defined schema. Some tables have defined relationships between them. Typically used in relational databases.

Semi-structured - Data that can be represented using tables but without strict defined schema. Rows must only have unique key identifier.

Unstructured - Any files in any format. Like binary files, application files, images, movies, etc.

Storage Account

Group of services which include

  • blob storage,
  • queue storage,
  • table storage, and
  • file storage

Used to store

  • files,
  • messages, and
  • semi-structured data

Highly scalable (up to petabytes of data)

Highly durable (99.999999999% - 11 nines, up to 16 nines)

Cheapest per GB storage

Blob Storage

BLOB – binary large object – file

Designed for storage of files of any kind

Three storage tiers

  • Hot – frequently accessed data
  • Cool – infrequently accessed data (lower availability, high durability)
  • Archive – rarely (if-ever) accessed data

Queue Storage

Storage for small pieces of data (messages)

Designed for scalable asynchronous processing

Table Storage

Storage for semi-structured data (NoSQL)

  • No need for foreign joins, foreign keys, relationships or strict schema
  • Designed for fast access

Many programming interfaces and SDKs

File Storage

Storage for files accessed via shared drive protocols

Designed to extend on-premise file shares or implement lift-and-shift scenarios

Disk Storage

Disk emulation in the cloud

Persistent storage for Virtual Machines

Different

  • sizes,
  • types (SSD, HDD)
  • performance tiers

Disk can be unmanaged or managed



Comments

Popular posts from this blog

Multi Cloud Intro

 What is Multi Cloud? Multicloud is a cloud approach made up of more than 1 cloud service, from more than 1 cloud vendor-public or private. For example, Availing different services from different provider (AWS/Azure/GCP), a s well as specialized platform-as-a-service (PaaS), infrastructure-as-a-service (IaaS), or software-as-a-service (SaaS) providers. Major reason for MultiCloud approach, Price competition, Variety of features, Location diversity. Challenges with Implementing Multi-Cloud: Multi-cloud isn’t all rosy: there are some downsides, and complexity to deal with. When deciding on our personal architecture, balance these with the benefits and our goals. 1) Pricing: Public cloud typically becomes more expensive than operating on-premise over time, but volume discounts can soften that blow. By diversifying your application deployment across multiple clouds. 2) Multi-cloud expertise needed: Public clouds are all built very differently, and there’s a learning curve for deploying...

Azure Cost Reduction

Looking for the Cost Reduction opportunities post-migration or cloud adoption is a great challenge to do however we can follow the given practices to save the cost for the Customer, Azure Cost Reduction can be achieved by using the following practices: Azure Reservations: Purchase Azure services for 1 or 3 years in advance with significant discounts Reserved instances – Azure Virtual Machines Reserved capacity – Azure Storage, SQL Database vCores, Databricks DBUs, Cosmos DB RUs Software plans – Red Hat, Red Hat OpenShift, SUSE Linux, etc. Reservations are made for 1 or 3 years Azure Spot VMs: Purchase unused Virtual Machine capacity for a significant discount How does it work? Significant discounts for Azure VMs Capacity can be taken away at any time Customers can set maximum price after discount to keep or evict the machine Best for interruptable workloads (batch processing, dev/test environments, large compute workloads, non-critical tasks, etc.) Hybrid use Benefit: Use existing l...

AWS Messaging Services

The most important messaging services we need to know when it comes to Application Integration are the following: Remember these keywords against each messaging service SNS: PubSub (Like publisher, subscriber) SQS: Queueing (Like batch) Kinesis: Real-time data Kafka: BigData SWF: State tracker and task coordinator SNS - Amazon Simple Notification Service: SNS is commonly used for sending simple internal emails. So for example when someone sign-ups on a website, We can use the AWS SDK to send a message to an SNS topic which then sends a plain text email. Another way we use SNS is to trigger webhooks in our application. For example, let us say we have a web-app which needs to extract data out of a PDF so we need to use a PDFTK which we have to run in a custom runtime in a Lambda function because of legacy reasons. When that lambda has processed that pdf we want to notify our web-app to tell the user it's done. We can have Lambda tell SNS which will then send an HTTP request to an api...