0
0
Hadoopdata~10 mins

HBase vs HDFS comparison in Hadoop - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the storage type of HBase.

Hadoop
storage_type = '[1]'
Drag options to blanks, or click blank then click option'
AColumn-oriented
BFile-oriented
CRow-oriented
DBlock-oriented
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing HBase storage with file storage like HDFS.
Choosing row-oriented instead of column-oriented.
2fill in blank
medium

Complete the code to specify the primary use case of HDFS.

Hadoop
use_case = '[1]'
Drag options to blanks, or click blank then click option'
ADistributed file storage
BReal-time data processing
CIn-memory data caching
DTransactional database
Attempts:
3 left
💡 Hint
Common Mistakes
Selecting real-time processing which is more related to other systems.
Confusing HDFS with in-memory caching systems.
3fill in blank
hard

Fix the error in the statement about HBase's data model.

Hadoop
HBase data model is based on [1] storage.
Drag options to blanks, or click blank then click option'
Ablock-oriented
Bfile-oriented
Crow-oriented
Dcolumn-oriented
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing row-oriented which is typical for relational databases.
Confusing file-oriented with HDFS storage.
4fill in blank
hard

Fill both blanks to complete the comparison between HBase and HDFS.

Hadoop
HBase is designed for [1] access, while HDFS is optimized for [2] access.
Drag options to blanks, or click blank then click option'
Arandom
Bsequential
Cbatch
Dreal-time
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up random and sequential access types.
Choosing batch for HBase which is incorrect.
5fill in blank
hard

Fill all three blanks to complete the differences in data handling between HBase and HDFS.

Hadoop
HBase supports [1] consistency, stores data in [2] format, and is built on top of [3].
Drag options to blanks, or click blank then click option'
Astrong
Bcolumn-oriented
CHDFS
Deventual
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing eventual consistency which is typical for some NoSQL systems but not HBase.
Confusing row-oriented with column-oriented format.
Not recognizing HDFS as the underlying storage.