Complete the code to define a column family in HBase table creation.
create 'my_table', '[1]'
In HBase, column families are defined during table creation using their names like 'cf1'.
Complete the code to add a new column family to an existing HBase table.
alter '[1]', 'cf2'
The 'alter' command modifies an existing table, so the table name must be correct.
Fix the error in the HBase shell command to create a table with two column families.
create 'test_table', '[1]', 'cf2'
Each column family must be a separate quoted string. The correct syntax is to list them as separate quoted strings.
Fill both blanks to define a table with two column families 'cf1' and 'cf2' in HBase shell.
create 'my_table', [1], [2]
The create command requires each column family as a separate quoted string.
Fill all three blanks to create a table 'sales' with column families 'info', 'data', and 'metrics'.
create '[1]', [2], [3], 'metrics'
The table name is the first argument, followed by each column family as separate quoted strings.