The current methods to set/increment hadoop counters only take in long values.
eg: increment(long incr) and setValue(long value) are two methods I pulled out from the Hadoop Javadocs.
My requirement is to store more complex type of information as part of the counters (as key/value pairs). This info might involve (string, string) key,value pairs.
How do I achieve this using Hadoop counters? If this is not possible, is there any other datastructure/facility in Hadoop/MR that allows storing such misc information that could be retrieved later by specifying the job_id, etc.
Thanks, Params