asaf
asaf

Reputation: 976

azure blob premium storage vs standard storage

I want to use the premium storage for better performance.

I am using it for BLOBS and i need the fastest blob access for reading.

I am using the reading and writing of the blobs only internally within the data center

I create a premium storage and checked it vs the standard storage by reading a blob of 10 MB 100 times in different location using seek method (reading 50 kb each time).

I read it using a VM machine with windows server 2012

the result are the same - around 200 ms.

Do i need to do something else ? like attach the storage ? if so how do i attach the storage.

both the vm and the storage are at the same region

Upvotes: 1

Views: 4050

Answers (3)

You can use Premium Storage blobs directly via the REST API. Performance will be better that Standard Storage blobs. Perf difference may not be obvious in some cases if there is local caching on the application or when the blob is too small. Here 10MB blob size is tiny compared to the performance limits. Can you retry with a larger blob? Like, 10 GB? Also note that Premium Storage model is not optimized for tiny blobs.

Upvotes: 3

Jason Ye
Jason Ye

Reputation: 13954

By default, there is a temporary storage(SSD) provided with each VM. This temporary storage drive is present on the physical machine which is hosting your VM and hence can have higher IOPS and lower latency when compared to the persistent storage like data disk.

enter image description here

For test, we can create a VM with HDD disk, and attach a SSD to this VM. After it complete, we can install some tools to measure disk performance, in this way, we can find the difference between HDD and SSD.

like attach the storage ? if so how do i attach the storage.

We can via Azure new portal to attach a SSD to this VM.

enter image description here

enter image description here

More information about attach disk to VM, please refer to this link.

Upvotes: 0

Jimmy Garzo
Jimmy Garzo

Reputation: 1

Well, in Virtual machine cases it always rely on your main Physical HDD, unless you will used that premium storage it's plus but i think internet connection matters as well.

Upvotes: 0

Related Questions