Want to understand more details about file in local temp path syncing to Storage server. #1307
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi, Thanks for reaching out. In case file-cache model (local caching) blobfuse will download the file on open to a local disk, in case of create it will be created on local disk. Post this all read/write operations will be served from local disk only. Only on a file-close, data will be uploaded to container. In any case if blobfuse was killed/terminated before it could complete the upload then data will be lost. As all the read/writes are served from local disk, based on the SKU/disk type performance will differ. |
Beta Was this translation helpful? Give feedback.
Hi,
Thanks for reaching out. In case file-cache model (local caching) blobfuse will download the file on open to a local disk, in case of create it will be created on local disk. Post this all read/write operations will be served from local disk only. Only on a file-close, data will be uploaded to container. In any case if blobfuse was killed/terminated before it could complete the upload then data will be lost. As all the read/writes are served from local disk, based on the SKU/disk type performance will differ.
Blobfuse does not choose any disk type or location, it totally configuration driven. In your system/VM/Host if you have a better disk available then you need to configure that pa…