+1 vote
in Hadoop by

What is the Hadoop Mapreduce api contract for a Key and Value Class?

1 Answer

0 votes
by

The Key must implement the org.apache.hadoop.io.WritableComparable interface. The value must implement the org.apache.hadoop.io.Writable interface.

...