Question : Can you provide multiple input paths to a map-reduce jobs? 1. Yes, but only in Hadoop 0.22+ 2. No, Hadoop always operates on one input directory 3. Access Mostly Uused Products by 50000+ Subscribers 4. Yes, but the limit is currently capped at 10 input paths.
Explanation: The Hadoop framework is capable of taking different input paths and assigning different mappers for each one. This is a very convenient way of writing different mappers to handle various datasets
Question : Can you assign different mappers to different input paths?
Explanation: Assigning different mappers to different data sources is the way to quickly and efficiently create code for processing multiple formats.
Question : Can you suppress reducer output?
1. Yes, there is a special data type that will suppress job output 2. No, map reduce job will always generate output. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Yes, but only during map execution when reducers have been set to zero
Explanation: There are a number of scenarios where output is not required from reducers. For instance, web crawling or image processing does not require external fetch or data processing.