Storage Account

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 6

1. How many ways azure provides to store data on the azure?

 Database: - Azure SQL Database, Azure Cosmos DB, and Azure Table Storage.
 Queue: - Azure Queue, event hubs.
 Files: - Azure files, azure blobs.
2. What is azure storage account?
A storage account is a container that groups a set of Azure Storage services together.
3. Which type of Azure Storage services together into storage account?
 Azure Blobs
 Azure Files
 Azure Queues
 Azure Tables
4. Which type of Azure Storage services are not together into storage account?
Azure SQL and Azure Cosmos DB are managed as independent Azure resources and cannot be
included in a storage account.
5. What is Naming of azure storage accounts?
The storage account provides a unique namespace for your Azure Storage data that is accessible
from anywhere in the world over HTTP or HTTPS.
 Storage account names must be between 3 and 24 characters in length and may contain
numbers and lowercase letters only.
 Your storage account name must be unique within Azure. No two storage accounts can
have the same name.
6. How many Types of storage accounts?
Azure Storage offers several types of storage accounts. Each type supports different features
and has its own pricing model. The types of storage accounts are:
 General-purpose v2 accounts
 General-purpose v1 accounts
 Blob Storage accounts
 Block Blob Storage accounts
 File Storage accounts
7. How many Performance tiers of storage accounts?
 Standard storage accounts
 Premium storage accounts
8. What is Standard storage account?
Standard storage accounts are backed by magnetic drives (HDD) and provide the lowest cost per
GB. it best where we need bulk storage and infrequently access data.
9. Which azure storage services are store by Standard storage account?
 Blobs
 Files
 Tables
 Queues
 Azure virtual machine disks.
10. Which storage accounts are supported by Standard storage account?
 General-purpose V2
 General-purpose V1
 BlobStorage
11. What is Premium storage account?
Premium storage accounts are backed by solid state drives (SSD) and offer consistent low-
latency performance.
12. Which azure storage services are store by Premium storage account?
A premium performance tier for storing unmanaged virtual machine disks for best I/O-intensive
applications like databases.. Microsoft recommends using managed disks with Azure virtual
machines instead of unmanaged disks.
13. Which storage accounts are supported by Premium storage account?
 General-purpose V2
 General-purpose V1
 BlockBlobStorag
 FileStorage
14. What is General-purpose v2 accounts?
General-purpose v2 storage accounts support the latest Azure Storage features. It deliver the
lowest per-gigabyte capacity prices for Azure Storage.
15. Which Azure Storage services are supported by General-purpose v2 accounts?
 Blobs (all types: Block, Append, Page)
 Data Lake Gen2
 Files
 Disks
 Queues
 Tables
16. What is General-purpose v1 accounts?
General-purpose v1 storage accounts provide access to all Azure Storage services, but may not
have the latest features or the lowest per gigabyte pricing.
17. Which Azure Storage services are supported by General-purpose v1 accounts?
 Blobs (all types)
 Files
 Disks
 Queues
 Tables
18. Which scenarios we can use General-purpose v1 accounts?
You can use general-purpose v1 accounts for these scenarios:
 Your applications require the Azure classic deployment model. General-purpose v2
accounts and Blob storage accounts support only the Azure Resource Manager
deployment model.
 Your applications are transaction-intensive or use significant geo-replication bandwidth,
but don't require large capacity. In this case, general-purpose v1 may be the most
economical choice.
 You use a version of the Storage Services REST API that is earlier than 2014-02-14 or a
client library with a version lower than 4.x. You can't upgrade your application.
19. What are BlockBlobStorage accounts?
A BlockBlobStorage account is a specialized storage account in the premium performance tier
for storing unstructured object data as block blobs or append blobs. Compared with general-
purpose v2 and BlobStorage accounts, BlockBlobStorage accounts provide low, consistent
latency and higher transaction rates.
BlockBlobStorage accounts don't currently support tiering to hot, cool, or archive access tiers.
This type of storage account does not support page blobs, tables, or queues.
20. What are FileStorage accounts?
A FileStorage account is a specialized storage account used to store and create premium file
shares. This storage account kind supports files but not block blobs, append blobs, page blobs,
tables, or queues.
FileStorage accounts offer unique performance dedicated characteristics such as IOPS bursting.
21. What are Storage account endpoints?
A storage account provides a unique namespace in Azure for your data. Every object that you
store in Azure Storage has an address that includes your unique account name.
22. What is combination of the endpoints URL?
An endpoint URL is created with the combination of the storage account name and the Azure
Storage service endpoint name such as:
-http://mystorageaccount.blob.core.windows.net/mycontainer/myblob.
23. How many endpoints for each of the Azure Storage services?
These are endpoints for each of the Azure Storage services: -
 Blob storage  https://<storage-account>.blob.core.windows.net
 Azure Data Lake Storage Gen2  https://<storage-account>.dfs.core.windows.net
 Azure Files  https://<storage-account>.file.core.windows.net
 Queue storage  https://<storage-account>.queue.core.windows.net
 Table storage  https://<storage-account>.table.core.windows.net
24. How many ways provide the access on the storage account?
You can grant access to the data in your storage account using any of the following approaches:
 Azure Active Directory: Use Azure Active Directory (Azure AD) credentials to
authenticate a user, group, or other identity for access to blob and queue data
 Shared Key authorization: Use your storage account access key to construct a
connection string that your application uses at runtime to access Azure Storage.
 Shared access signature: A shared access signature (SAS) is a token that permits
delegated access to resources in your storage account. The SAS token encapsulates all of
the information needed to authorize a request to Azure Storage on the URL. When you
create a SAS, you can specify which permissions the SAS grants to a resource and the
interval over which the permissions are valid. A SAS token can be signed with either
Azure AD credentials or with Shared

25. How many storage accounts do you need?


A storage account represents a collection of settings like location, replication strategy, and
subscription owner. You need one storage account for every group of settings that you want to
apply to your data.
26. What are Storage account settings?
A storage account defines a policy that applies to all the storage services in the account. For
example, you could specify that all the contained services will be stored in the West US
datacenter, accessible only over https, and billed to the sales department's subscription.
The settings that are controlled by a storage account are:
 Subscription: The Azure subscription that will be billed for the services in the account.
 Location: The datacenter that will store the services in the account.
 Performance: Determines the data services you can have in your storage account and
the type of hardware disks used to store the data.
 Replication: Determines the strategy used to make copies of your data to protect
against hardware failure or natural disaster.
 Access tier: Controls how quickly you will be able to access the blobs in this storage
account. Hot gives quicker access than Cool, but at increased cost. This applies only to
blobs, and serves as the default value for new blobs.
 Secure transfer required: A security feature that determines the supported protocols
for access. Enabled requires HTTPs, while disabled allows HTTP.
 Virtual networks: A security feature that allows inbound access requests only from the
virtual network(s) you specify.
27. How to happen Storage account billing?
Azure Storage bills based on your storage account usage. All objects in a storage account are
billed together as a group. Storage costs are calculated according to the following factors:
 Region refers to the geographical region in which your account is based.
 Account type refers to the type of storage account you're using.
 Access tier refers to the data usage pattern you've specified for your general-purpose v2
or Blob storage account.
 Capacity refers to how much of your storage account allotment you're using to store
data.
 Replication determines how many copies of your data are maintained at one time, and
in what locations.
 Transactions refer to all read and write operations to Azure Storage.
 Data egress refers to any data transferred out of an Azure region. When the data in your
storage account is accessed by an application that isn't running in the same region,
you're charged for data egress. For information about using resource groups to group
your data and services in the same region to limit egress charges
28. What are storage account property?
 Overview
 Activity log
 Tags
 Access control (IAM)
 Data migration
 Events
 Storage explorer (Preview)
 Access keys
 Geo-replication
 CORS
 Configuration
 Encryption
 Shared access singnature
 Networking
 Security
 Advisor recommendations
 Static website
 Properties
 Locks
 Containers
 Data protection
 Azure CDN
 Add azure search
 Lifecycle management
 Blob inventory (preview)
 File shares
 Tables
 Queues

You might also like