Reputation: 103
I thoroughly searched for an answer, however I am still confused about the limit on number of keys or reduce tasks in Hadoop framework. Is it an integer number or can be any value?
Upvotes: 0
Views: 135
Reputation: 6158
Hadoop MapReduce works in Key-Value
pair pattern, and key can be anything the only criteria is key class must be implement org.apache.hadoop.io.WritableComparable
interface
and value class must be implementation of org.apache.hadoop.io.Writable
interface
Upvotes: 1