Ask Your Question
1

Is there a benefit of using page blobs instead of block blobs if only performing random reads?

asked 2021-11-11 11:00:00 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-03-23 05:00:00 +0000

djk gravatar image

Yes, there is a benefit of using page blobs instead of block blobs if only performing random reads. Page blobs are specifically designed for random access scenarios, where only a portion of the data needs to be accessed frequently. They have the ability to read and write individual pages without having to retrieve or upload the entire blob. This makes them more efficient for scenarios that require frequent access to only certain parts of the data.

In contrast, block blobs are designed for scenarios where the entire blob is accessed or modified frequently, such as video or image files. Although block blobs can support random reads, they are not optimized for this use case and may be less efficient than page blobs.

Therefore, if you only need to perform random reads on a blob and don't require frequent access to the entire blob, using page blobs would be the better choice.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-11-11 11:00:00 +0000

Seen: 1 times

Last updated: Mar 23 '22