Skip to content
Advertisement

Reducer doesn’t call reduce method when using my own class as output value MapReduce Hadoop

I was trying to use my own Class object as the output value of my Mapper and use them inside the Reducer but the reduce() method isn’t called and my app was going to be terminated if I remove the default constructor of DateIncome class. I wrote my codes as follows:

Driver:

JavaScript

Mapper:

JavaScript

Reducer:

JavaScript

DateIncome:

JavaScript

Input.txt:

JavaScript

output:

JavaScript

So, My Question is if I remove the default constructor of DateIncome class, The reduce() method of the reducer won’t be called. Why Hadoop does need the default constructor although another constructor is provided?

Advertisement

Answer

All Writable implementations should have default constructor because otherwise your object won’t be deserialized.

During deserialization process object are instantiating by default constructor and only after that all fields are filling. So this process are broken if you create not default constructor.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement