In this section, we'll create an HBase table on the cluster, enter some data, query the table, then clean up the data and exit.
HBase tables are organized by column, rather than by row.
Furthermore, the columns are organized in groups called column families. When creating an
HBase table, you must define the column families before inserting any data. Column families
should not be changed often, nor should there be too many of them, so it is important to think
carefully about what column families will be useful for your particular data. Each column
family, however, can contain a very large number of columns. Columns are named using the format
family:qualifier.
Unlike columns in a relational database, which reserve empty space for columns with no values, HBase columns simply don't exist for rows where they have no values. This not only saves space, but means that different rows need not have the same columns; you can use whatever columns you need for your data on a per-row basis.