I am reading tutorials on Big Data and Hadoop where I found these 2 points on HDFS
Streaming Data Access: The time to read whole data set is more important than latency in reading the first. HDFS is built on write-once and read-many- times pattern.
&
Low Latency data access: Applications that require very less time to access the first data should not use HDFS as it is giving importance to whole data rather than time to fetch the first record.
I am confused because 1st one says The time to read whole data set is more important and second one says ...should not use HDFS as it is giving importance to whole data
I don't understand what is expected? I am new to Hadoop.