HDFS is logical filesystem in Hadoop with Block size of 64MB. A file on HDFS is in turn saved on the underlying OS filesystem say ext4 with 4KiB as block size.
To my knowledge, for a file on the local file system, OS uses start and end cylinders of physical hard disk of 4KiB block for its retrieval. As HDFS files are also saved on the ext4 underlying filesystem, the HDFS files are also to be retrieved with the help of 4KiB blocks start and end cylinders only.
If that is the case this won't increase the speed of data retrieval. Now the question is what is the technique used in HDFS wrt hard disk for increasing its retrieval speed?
Thanks in advance