diff --git a/EXERCISES.md b/EXERCISES.md index 91e93a4..dfd9cf4 100644 --- a/EXERCISES.md +++ b/EXERCISES.md @@ -8,4 +8,16 @@ Connect to your running HBase via **hubris**. Hbase UBer Interactive Shell; enter 'help' to see available commands or 'exit' to quit. hubris> +Type help and then to see a listing of shell commands and options. Browse at least the paragraphs at +the end of the help emission for the gist of how variables and command arguments are entered into the HBase shell; +in particular note how table names, rows, and columns, etc., must be quoted. + +Create a table named test with a single column family named cf. Verify its creation by listing all tables and then +insert some values. + + hubris> create 'test', 'cf' + true + hubris> list-table 'test' + .. + _TODO_