Reputation: 422
I'm using Visual Studio to deploy a web application to an Azure hosted web role and I'm noticing my count of storage transactions creeping up. My question is does this deployment process count toward my available storage transactions? If so, is it a single transaction per file deployed? How is this being calculated?
Upvotes: 1
Views: 160
Reputation: 1611
If you watch the deployment, Visual Studio uploads the package into blob storage and then will publish it from there to Azure. That is why your storage count is going up when you deploy. Diagnostics will also cause your storage transactions to grow. Another thing that will is if you have IntelliTrace enabled.
Upvotes: 1
Reputation: 53
I am afraid VM diagnostics of your application is enabled. Because VM diagnostics collects and transfers logs to Azure Storage, your count of storage transactions will increase. With Windows Azure SDK 1.6, default setting of VM diagnostics is enabled.
Please read this article for more details.
Upvotes: 3