Looking for Real Exam Questions for IT Certification Exams!
We guarantee you can pass any IT certification exam at your first attempt with just 10-12
hours study of our guides.
Our study guides contain actual exam questions; accurate answers with detailed explanation
verified by experts and all graphics and drag-n-drop exhibits shown just as on the real test.
To test the quality of our guides, you can download the one-fourth portion of any guide from
http://www.certificationking.com absolutely free. You can also download the guides for retired
exams that you might have taken in the past.
For pricing and placing order, please visit http://certificationking.com/order.html
We accept all major credit cards through www.paypal.com
For other payment options and any further query, feel free to mail us at
[email protected]
Cloudera CCB-400 Exam
QUESTION NO: 1
You have one primary HMaster and one standby. Your primary HMaster Falls fails and your client
application needs to make a metadata change. Which of the following is the effect on your client
application?
A. The client will queryZooKeepertofind the location of the new HMaster and complete the
metadata change.
B. The client will make the metadata change regardless of the slate of the HMaster.
C. The new HMaster will notify the client and complete the metadata change.
D. Theclientapplication will fail with a runtime error.
Answer: A
Explanation:
QUESTION NO: 2
You have an average key-value pair size of 100 bytes. Your primary access is random needs on
the table. Which of the following actions will speed up random reading performance on your
cluster?
A. Turn off WAL on puts
B. Increase the number of versions kept
C. Decrease the block size
D. Increase the block size
Answer: D
Explanation:
QUESTION NO: 3
The cells in a given row have versions that range from 1000 to 2000. You execute a delete
specifying the value 3000 for the version. What is the outcome?
A. The delete fails with an error.
B. Only cells equal to the Specified version are deleted.
C. The entire row is deleted.
www.CertificationKing.com 2
Cloudera CCB-400 Exam
D. Nothing in the row is deleted.
Answer: C
Reference:http://archive.cloudera.com/cdh4/cdh/4/hbase/book.html#delete(scroll below and see
5.8.1.5. Delete topic, read the last paragraph)
QUESTION NO: 4
You have an "Employees" table in HBase. The Row Keys are the employees' IDs. You would like
to retrieve all employees who have an employee ID between 'user_100' and 'user_110'. The shell
command you would use to complete this is:
A. scan'Employees', {STARTROW =>'user_100', STOPROW =>'user_111'}
B. get'Employees', {STARTROW =>'user_100', STOPROW =>'user_110'}
C. scan'Employees', {STARTROW =>'user_100', SLIMIT => 10}
D. scan'Employees', {STARTROW =>'user_100', STOPROW =>'user_110'}
Answer: D
Explanation:
QUESTION NO: 5
Under default settings, which feature of HBase ensures that data won't be lost in the event of a
RegionServer failure?
A. AllHBase activity is written to the WAL, which is stored in HDFS
B. All operations are logged on theHMaster.
C. HBase is ACID compliant, which guarantees that itis Durable.
D. Data is stored on the local filesystem of the RegionServer.
Answer: A
Reference:http://tm.durusau.net/?p=27674(See ‘From the post’ second paragraph)
QUESTION NO: 6
www.CertificationKing.com 3
Cloudera CCB-400 Exam
You have two standbys and one primary HMaster. Your primary HMaster fails. Which of the
remaining HMasters becomes the new primary?
A. Whichever HMaster first responds to ZooKeeper
B. Whichever HMasterZooKeeper randomly selects
C. Whichever HMastercreates the znode first
D. Whichever HMaster has the lower IP address
Answer: A
Explanation:
QUESTION NO: 7
Data is written to the HLog in which of the following orders?
A. In order of writes
B. In order of writes, separated by region
C. Ascending first by region and second by row key
D. Descending first by region and second by row key
Answer: D
Explanation:
QUESTION NO: 8
You have a table with the following rowkeys:
r1, r2, r3, r10, r15, r20, r25, r30, r35
In which order will these rows be retrieved from a scan?
A. r35,r30,r3,r25,r20,r2,r15,r10,r1
B. r1,r2,r3,r10,r15,r20, r25,r30,r35
C. r1,r10,r15,r2,r20,r25,r3,r30,r35
D. r35,r30,r25,r20,r15,r10,r3,r2,r1
Answer: D
Explanation:
www.CertificationKing.com 4
Cloudera CCB-400 Exam
QUESTION NO: 9
You need to create a "WebLogs" table in HBase. The table will consist of a single Column Family
called "Errors" and two column qualifiers, "IP" and "URL". The shell command you should use to
create the table is:
A. create'WebLogs',{NAME =>'Errors:IP', NAME =>'Errors:URL'}
B. create'WebLogs','Errors'{NAME =>'IP', NAME =>'URL'}
C. create'WebLogs','Errors:IP','Errors:URL'
D. create'WebLogs','Errors'
Answer: C
Explanation:
QUESTION NO: 10
Which feature of HBase ensures predictable disk head seek performance within a RegionServer?
A. Data is stored distributed in HDFS
B. Data stored in HBase is sparse
C. Data is stored sorted on row keys
D. Data is stored as an uninterpreted array of bytes
Answer: C
Explanation:
QUESTION NO: 11
Given that following is your entire dataset:
How many sets of physical files will be read during a scan of the entire dataset immediately
www.CertificationKing.com 5
Cloudera CCB-400 Exam
following a major compaction?
A. Two
B. One
C. Three
D. Four
Answer: B
Explanation:
QUESTION NO: 12
Your client application if; writing data to a Region. By default, where is the data saved first?
A. StoreFile
B. WAL
C. MemStore
D. Local disk on theRegionServer
Answer: C
Reference:http://www.cloudera.com/blog/2012/07/hbase-log-splitting/(Log splitting, first paragraph)
QUESTION NO: 13
You want to do a full table scan on your data. You decide to disable block caching to see if this
improves scan performance. Will disabling block caching improve scan performance?
A. No. Disabling block caching does notimprove scan performance.
B. Yes.When you disable blockcaching, youfreeup that memory for other operations.Witha full
table scan,you cannot take advantage of blockcaching anyway because your entiretable
won'tfitinto cache.
C. No. If you disable block caching, HBase must read each block index from disk for each
scan,thereby decreasing scan performance.
D. Yes. When you disable block caching, youfree up memory forMemStore, which
improves,scanperformance.
Answer: B
www.CertificationKing.com 6
Cloudera CCB-400 Exam
Explanation:
QUESTION NO: 14
Your client application needs to scan s region for the row key value 104.
Given a store that contains the following list of Row Key values:
100, 101, 102, 103, 104, 105, 106, 107
A bloom filter would return which of the following?
A. Confirmation that 104 may becontained in theset
B. Confirmation that 104 is contained in the set
C. Thehash of column family
D. The file offset of the value 104
Answer: B
Explanation:
QUESTION NO: 15
You have 40 Web servers producing timeseries data from Web traffic logs. You want to attain high
write throughput for storing this data in an HBase table. Which of these should you choose for a
row key to maximize your write throughput?
A. <hashCode(centralServerGeneratedSequenceID) ><timestamp>
B. <Long.MAX_VALUE – timestamp>
C. <timestamp>
D. <hashCode(serverGeneratingTheWeblog)><timestamp>
Answer: C
Explanation:
QUESTION NO: 16
You have data already stored in HDFS and are considering using HBase. Which additional feature
www.CertificationKing.com 7