Is Azure role local storage guaranteed to be inaccessible to an application that is next to use the same host?

前端 未结 3 976
予麋鹿
予麋鹿 2021-01-21 05:31

Suppose my Azure role stores files to the role local filesystem and forgets to delete them. Can another application that uses that host in future possibly get access to those fi

3条回答
  •  悲&欢浪女
    2021-01-21 05:58

    Although I am not sure it's properly documented, I am fairly certain that Windows Azure recycles thoroughly whatever local files haven been dumped by a Role into a VM before letting any other Role access the VM. That's a fairly basic security policy.

    Then, considering the deployment time on Windows Azure for a new VM (between 6min to 8min) I am pretty sure that the VM itself is pretty much wiped-out clean, not just the local storage, so that whatever by-product files which might have been generated by the OS itself during the execution of the VM does not become available afterward.

提交回复
热议问题