Complete the code to identify the storage type of HBase.
storage_type = '[1]'
HBase stores data in a column-oriented way, which is different from HDFS that stores files.
Complete the code to specify the primary use case of HDFS.
use_case = '[1]'
HDFS is mainly used for distributed file storage across multiple machines.
Fix the error in the statement about HBase's data model.
HBase data model is based on [1] storage.HBase uses a column-oriented data model, which allows efficient queries on columns.
Fill both blanks to complete the comparison between HBase and HDFS.
HBase is designed for [1] access, while HDFS is optimized for [2] access.
HBase supports random, real-time read/write access, whereas HDFS is optimized for sequential batch processing.
Fill all three blanks to complete the differences in data handling between HBase and HDFS.
HBase supports [1] consistency, stores data in [2] format, and is built on top of [3].
HBase provides strong consistency, stores data in a column-oriented format, and runs on top of HDFS.