Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Azure storage CreateIfNotExist() result in extra round-trip?

Most of the examples on working with Azure Storage have .CreateIfNotExist(); inside the program flow. So if I have a method that puts a blob, but before executing the put it executes .CreateIfNotExist();, does this mean that there is an extra round-trip being made to the storage?

like image 259
user1662812 Avatar asked Sep 24 '12 16:09

user1662812


People also ask

Is Azure table storage persistent?

Azure DisksAllows data to be persistently stored and accessed from an attached virtual hard disk.

Which is the absolute cheapest way to store data in Azure?

The Archive tier offers the lowest Azure storage costs available on the Azure cloud: depending on the region, rates can be as low as $0.00099 to $0.002 per GB up to first 50 TBs. However, reading data from an archive tier can be a costly activity which charges $5 for every 10,000 read operations.

What is storage redundancy in Azure?

Zone-redundant storage. Zone-redundant storage (ZRS) replicates your storage account synchronously across three Azure availability zones in the primary region. Each availability zone is a separate physical location with independent power, cooling, and networking.


1 Answers

Yes. It would be better to create the container when you role starts (WebRole.cs/WorkerRole.cs) or when your application starts (Global.asax.cs)

like image 136
Sandrino Di Mattia Avatar answered Sep 28 '22 00:09

Sandrino Di Mattia