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
1. ColumnFamilies can set a TTL length in seconds 2. Rows will automatically delete when expiration time is reached 3. Access Mostly Uused Products by 50000+ Subscribers 4. Used in conjunction with minimum versions setting 5. All of the above