Correct Answer : Get Lastest Questions and Answer : Explanation: GenericOptionsParser is a utility to parse command line arguments generic to the Hadoop framework. GenericOptionsParser recognizes several standarad command line arguments, enabling applications to easily specify a namenode, a jobtracker, additional configuration resources etc
-conf specify a configuration file -D use value for given property -fs specify a namenode -jt specify a job tracker -files specify comma separated files to be copied to the map reduce cluster -libjars specify comma separated jar files to include in the classpath. -archives specify comma separated archives to be unarchived on the compute machines.
Question : Put in correct order by which Hadoop Configuration can be override with priority from lowest to highest A. Hadoop Framework JarFile (In built in framework) B. Global XML file C. Local XML file D. Command-line arguments E. Within the Driver class
Correct Answer : Get Lastest Questions and Answer : Explanation: The last place that you can define the configuration parameters before the job launch is within the driver itself
Question : Which all are types of Counter available in MapReduce framework A. File-System level B. Job level C. Framework level D. Custom counter 1. A,B,C 2. B,C,D 3. Access Mostly Uused Products by 50000+ Subscribers 4. A,B,C,D
1. File-System level : How much bytes have been written or read from MapR-FS or Local File System 2. Job Level : How many map tasks and reduce task executed. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Custom : MapReduce allows you to define your own custom counters. Custom counters are useful for counting specific records such as Bad Records, as the framework counts only total records. Custom counters can also be used to count outliers such as example maximum and minimum values, and for summations.