MCPcopy Create free account
hub / github.com/apache/pig / write

Method write

src/org/apache/pig/impl/io/InterRecordWriter.java:66–75  ·  view source on GitHub ↗
(WritableComparable wc, Tuple t)

Source from the content-addressed store, hash-verified

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}

Callers 6

testInterStorageSerDeMethod · 0.95
fetchResourceMethod · 0.45
putNextMethod · 0.45
putNextMethod · 0.45
serializeToBytesMethod · 0.45
putNextMethod · 0.45

Calls 1

writeDatumMethod · 0.65

Tested by 1

testInterStorageSerDeMethod · 0.76