Question : Will settings using Java API overwrite values in configuration files?
1. No. The configuration settings in the configuration file takes precedence 2. Yes. The configuration settings using Java API take precedence 3. Access Mostly Uused Products by 50000+ Subscribers 4. Only global configuration settings are captured in configuration files on namenode. There are only a very few job parameters that can be set using Java API
Explanation: Developer has full control over the setting on Hadoop cluster. All configurations can be changed via Java API
Question : What is distributed cache? 1. The distributed cache is special component on namenode that will cache frequently used data for faster client response. It is used during reduce step 2. The distributed cache is special component on datanode that will cache frequently used data for faster client response. It is used during map step 3. Access Mostly Uused Products by 50000+ Subscribers 4. The distributed cache is a component that allows developers to deploy jars for Map-Reduce processing.
Explanation: Distributed cache is the Hadoop answer to the problem of deploying third-party libraries. Distributed cache will allow libraries to be deployed to all datanodes.
Question : What is writable?
1. Writable is a java interface that needs to be implemented for streaming data to remote servers. 2. Writable is a java interface that needs to be implemented for HDFS writes. 3. Access Mostly Uused Products by 50000+ Subscribers 4. None of these answers are corrects
Explanation: Hadoop performs a lot of data transmissions between different datanodes. Writable is needed for mapreduce processing in order to improve performance of the data transmissions. The Writable interface makes serialization quick and easy for Hadoop.