shivajikobardan Posted January 8, 2022 Share Posted January 8, 2022 hotspot-: region of computer program where a high proportion of executed instructions occur Lazy space allocation-:https://stackoverflow.com/questions/18109582/what-is-lazy-space-allocation-in-google-file-system With lazy space allocation, the physical allocation of space is delayed as long as possible, until data at the size of the chunk size (in GFS's case, 64 MB according the 2003 paper) is accumulated. Large chunk size in GFS-: =>A large chunk size, even with lazy space allocation has its disadvantages. => A small file consists of a small number of chunks, perhaps just one. => The chunkservers storing those chunks may become hot spots if many clients are accessing the same file. => In practice hotspots haven't been a major issue because our applications mostly read large multi chunk files sequentially. I don't understand how hotspots are no issue when we read large multi chunk files sequentially. They say hotspots are issue if clients are accessing same small file(file of just 1 chunk). I will represent scenario where small file=small no. of chunks is being accesed by multiple clients. https://imgur.com/a/B2F4VLh it makes sense why chunkservers will be hotspot in this case as they will be active if they are being accessed by multiple clients. but it absolutely doesn't make sense when the research paper say " In practice hotspots haven't been a major issue because our applications mostly read large multi chunk files sequentially." What's the difference. If I imagine a scenario like above, here file is made up of multiple chunks and rest is same, what difference is made here? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now