You have two tables in an existing RDBMS. One table contains order information (item, quantity, price, etc.) and the other contains store information (address, phone, manager, etc). These two tables are not often accessed simultaneously. You would like to move this data into HBase. How would you design the schema?
Which of the following configuration values determines automated splitting?
http://hbase.apache.org/book/important_configurations.html (2.8.2.6. Bigger regions, see the code in the last sentence)
From within an HBase application, you want to retrieve two versions of a row, if they exist. Where your application should configure the maximum number of versions to be retrieved?
http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html (search for maxversions)
Your client application connects to HBase for the first time to perform a write. Which of the following sequences will it traverse to find the region serving the row range of interest?
You have a "Users" table in HBase and you would like to insert a row that consists of a UserID, "jsmith70" and an email address, "jane@example.com". The table has a single Column Family named "Meta" and the row key will be the user's ID. The shell command you should use to complete this is:
Currently there are no comments in this discussion, be the first to comment!