From Google File System paper, Application communicates with GFS Client by sending (filename, byteRange) and then GFS Client converts that byteRange to ChunckIndex. From the document it is unclear to me
- Does
byteRangerepresent begin and end of bytes to read/write OR does it represent number of bytes to read/write? - How does GFS Client convert
byteRagetoChunkIndex? What is the formula behind it and what other variable(s) besidebyteRangeinvolved in this calculation?
Thank you,