| 1. |
Can I Set The Number Of Reducers To Zero? |
|
Answer» Yes, SETTING the NUMBER of reducers to zero is a valid configuration in Hadoop. When you set the reducers to zero no reducers will be executed, and the OUTPUT of each MAPPER will be stored to a separate file on HDFS. [This is different from the condition when reducers are set to a number greater than zero and the Mappers output (intermediate data) is written to the Local file system(NOT HDFS) of each mappter slave node.] Yes, Setting the number of reducers to zero is a valid configuration in Hadoop. When you set the reducers to zero no reducers will be executed, and the output of each mapper will be stored to a separate file on HDFS. [This is different from the condition when reducers are set to a number greater than zero and the Mappers output (intermediate data) is written to the Local file system(NOT HDFS) of each mappter slave node.] |
|