2

We want to run a worker role to perform disk intensive database upgrades and scale-out instances as we have more of them to do.

It would appear that we can't take advantage of the DS series virtual machines sizes for worker roles. After setting the zmsize to the DS series machine we want we got this error:

Value 'Standard_DS3' specified for parameter 'RoleSize' is invalid.
Allowed values are
'ExtraSmall,Small,Medium,Large,ExtraLarge,A5,A6,A7,A8,A9,A10,A11,Standard_D1,
Standard_D2,Standard_D3,Standard_D4,Standard_D11,Standard_D12,Standard_D13,
Standard_D14'.

Is there any way to attach SSD storage to a worker role?

SuperBiasedMan
  • 9,814
  • 10
  • 45
  • 73
Paul Davis
  • 31
  • 3

1 Answers1

5

Unfortunately the only way to get SSD performance for Cloud Service web and worker roles is to use D series and the D drive will be ssd. This is a temporary drive so you should not use it for persistent data but you can use it for calculations.

Here is a link with more detail

https://azure.microsoft.com/en-us/documentation/articles/cloud-services-sizes-specs/

I hope this helps Niall Moran @niallermoran

Gaurav Mantri
  • 128,066
  • 12
  • 206
  • 241
  • OK, that's great. Thanks :) – Paul Davis Jul 20 '15 at 07:36
  • For anyone reading this in 2018 I have not found this to be true. Sometimes the drives change between deploys. MSFT suggests to use local storage but I'm not sure if that's guaranteed to be SSD even on a D series – JasonCoder May 11 '18 at 14:36