Question : You need to insert a cell with a specific timestamp (version) . Which of the following is true?
1. The timestamp for the entire row must be updated to 13353903160532 2. The Put class allows setting a cell specific timestamp 3. Access Mostly Uused Products by 50000+ Subscribers 4. The HTable class allows you to temporarily roll back the newer versions of the cell
Correct Answer : 2
Doing a put always creates a new version of a cell, at a certain timestamp. By default the system uses the server's currentTimeMillis, but you can specify the version (= the long integer) yourself, on a per-column level. This means you could assign a time in the past or the future, or use the long value for non-time purposes. To overwrite an existing value, do a put at exactly the same row, column, and version as that of the cell you would overshadow.
Question : Select the correct statement
1. .META table holds the list of all user space region 2. Entries in .META tables are keyed by region name 3. Access Mostly Uused Products by 50000+ Subscribers 4. Region name is made up of first raw values of that region
Question :What is HBASE? 1. Hbase is separate set of the Java API for Hadoop cluster 2. Hbase is a part of the Apache Hadoop project that provides interface for scanning large amount of data using Hadoop infrastructure 3. Access Mostly Uused Products by 50000+ Subscribers 4. HBase is a part of the Apache Hadoop project that provides a SQL like interface for data processing.