2

Can i have shared temporary storage for both worker role and web role for an azure application ?

I have a video upload section in my application, and there on uploading an mp4 video it will stored in the LocalStorage of the web role from there i was generating the thumbnail of the video and also the video conversion to a different format. Initially i done this scenario using TPL from the web role itself. Now I am planning to handover the video conversion and thumbnail generation to worker-role. i. e , when a user uploads a video it will be stored in any temporary storage, the worker role picks it up and converts the video to another format and the thumbnail for the video is generated and the results will be uploaded to my blobstorage and the video will be deleted from the local storage.

As far as my knowledge is concerned the worker role cannot access the local storage of a webrole. So where should I store my video initially so that both worker and webrole can access it ?

Thanks in advance

Boney

4

1 に答える 1

0

BLOB ストレージを使用しないのはなぜですか?

于 2012-11-02T07:34:45.250 に答える