I know that other storage solutions are preferred for virtually any non-static data.
However, I still see some people using the filesystem provided in the Azure Websites service, which currently amounts to 10GB of space, particularly for die-hard App_Data
uses.
- Is it truly distributed, or does it simply not scale at all? I'm really having trouble finding a definitive answer on this.
Out of curiosity, if it isn't:
- Is it at least replicated?
- If so, is it replicated among the instances, or is it a completely dedicated service?
If it isn't replicated either,
- Is there one master instance we should hope would never die, or is it, again, a dedicated service completely isolated from the application instances?
Thanks.