(WritableComparable wc, Tuple t)
| 64 | * @see org.apache.hadoop.mapreduce.RecordWriter#write(java.lang.Object, java.lang.Object) |
| 65 | */ |
| 66 | @Override |
| 67 | public void write(WritableComparable wc, Tuple t) throws IOException, |
| 68 | InterruptedException { |
| 69 | // we really only want to write the tuple (value) out here |
| 70 | out.write(RECORD_1); |
| 71 | out.write(RECORD_2); |
| 72 | out.write(RECORD_3); |
| 73 | sedes.writeDatum(out, t); |
| 74 | |
| 75 | } |
| 76 | |
| 77 | } |