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
byteRange
represent begin and end of bytes to read/write OR does it represent number of bytes to read/write? - How does GFS Client convert
byteRage
toChunkIndex
? What is the formula behind it and what other variable(s) besidebyteRange
involved in this calculation?
Thank you,