Having trouble with large file access from blob storage [context deadline exceeded] #1166
-
Hello,
filename was redacted to protect the innocent ;) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
[context deadline exceeded] : basically means it took too long to download the contents of this file. By default blobfuse works in file-cache mode where entire file is downloaded on local system and then read/writes are served from that cache. If network or underlying disk are slow then download and local caching will take a lot of time and operation may timeout. If objective is to process this huge file then better switch to "streaming" mde of blobfuse, however that will reduce the performance. If you need high performance then ensure network and local disk speeds are adequate to support such huge file. |
Beta Was this translation helpful? Give feedback.
[context deadline exceeded] : basically means it took too long to download the contents of this file. By default blobfuse works in file-cache mode where entire file is downloaded on local system and then read/writes are served from that cache. If network or underlying disk are slow then download and local caching will take a lot of time and operation may timeout. If objective is to process this huge file then better switch to "streaming" mde of blobfuse, however that will reduce the performance. If you need high performance then ensure network and local disk speeds are adequate to support such huge file.