Package org.apache.beam.sdk.io.thrift
Class ThriftIO
java.lang.Object
org.apache.beam.sdk.io.thrift.ThriftIO
PTransforms for reading and writing files containing Thrift encoded data.
 Reading Thrift Files
For reading each file in a PCollection of FileIO.ReadableFile, use the readFiles(Class) transform.
 
For example:
 PCollection<FileIO.ReadableFile> files = pipeline
   .apply(FileIO.match().filepattern(options.getInputFilepattern())
   .apply(FileIO.readMatches());
 PCollection<ExampleType> examples = files.apply(ThriftIO.readFiles(ExampleType.class).withProtocol(thriftProto);
 
 Writing Thrift Files
ThriftIO.Sink allows for a PCollection of TBase to be written to
 Thrift files. It can be used with the general-purpose FileIO transforms with
 FileIO.write/writeDynamic specifically.
 
For example:
 pipeline
   .apply(...) // PCollection<ExampleType>
   .apply(FileIO
     .<ExampleType>write()
     .via(ThriftIO.sink(thriftProto))
     .to("destination/path");
 - 
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classImplementation ofreadFiles(java.lang.Class<T>).static classThriftIO.Sink<T extends org.apache.thrift.TBase<?,?>> Implementation ofsink(org.apache.thrift.protocol.TProtocolFactory).protected static classThriftIO.ThriftWriter<T extends org.apache.thrift.TBase<?,?>> Writer to write Thrift object toOutputStream. - 
Method Summary
Modifier and TypeMethodDescriptionstatic <T> ThriftIO.ReadFiles<T> Reads each file in aPCollectionofFileIO.ReadableFile, which allows more flexible usage.static <T extends org.apache.thrift.TBase<?,?>> 
ThriftIO.Sink<T> sink(org.apache.thrift.protocol.TProtocolFactory factory)  
- 
Method Details
- 
readFiles
Reads each file in aPCollectionofFileIO.ReadableFile, which allows more flexible usage. - 
sink
public static <T extends org.apache.thrift.TBase<?,?>> ThriftIO.Sink<T> sink(org.apache.thrift.protocol.TProtocolFactory factory)  
 -