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

前端 未结 3 969
予麋鹿
予麋鹿 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 06:14

    No, it cannot be used by another VM, even accidentally. The 'scratch' drive that is mounted by your Windows Azure instance is another VHD - data is not written natively to disk. So, in order for another instance to read your data, it would have to mount your VHD, which is not possible.

提交回复
热议问题