I need to create a buffer in cascading hadoop.
Suppose i have fields :
member_id,amountpaid,diadnosis_id,diagnosis_description,superGrouper_id,superGrouper_descriptiion,grouperId,grouperDescription
I need to
- group the fields from
member_id
andsuperGrouper_id
- send these information using every pipe to a buffer
- the buffer output should be :
member_id
, highest paid sorting fromsuperGrouper
, highest paid sorting fromgrouperId
, highest paid fromdiagnosis_id
, along with their description...
Please help me creating a buffer. Thanks in advance