public abstract class ReadAllViaFileBasedSourceTransform<InT,T> extends PTransform<PCollection<FileIO.ReadableFile>,PCollection<T>>
Modifier and Type | Class and Description |
---|---|
static class |
ReadAllViaFileBasedSourceTransform.AbstractReadFileRangesFn<InT,T> |
static class |
ReadAllViaFileBasedSourceTransform.SplitIntoRangesFn |
Modifier and Type | Field and Description |
---|---|
protected Coder<T> |
coder |
protected SerializableFunction<java.lang.String,? extends FileBasedSource<InT>> |
createSource |
static boolean |
DEFAULT_USES_RESHUFFLE |
protected long |
desiredBundleSizeBytes |
protected ReadAllViaFileBasedSource.ReadFileRangesFnExceptionHandler |
exceptionHandler |
protected boolean |
usesReshuffle |
name, resourceHints
Constructor and Description |
---|
ReadAllViaFileBasedSourceTransform(long desiredBundleSizeBytes,
SerializableFunction<java.lang.String,? extends FileBasedSource<InT>> createSource,
Coder<T> coder) |
ReadAllViaFileBasedSourceTransform(long desiredBundleSizeBytes,
SerializableFunction<java.lang.String,? extends FileBasedSource<InT>> createSource,
Coder<T> coder,
boolean usesReshuffle,
ReadAllViaFileBasedSource.ReadFileRangesFnExceptionHandler exceptionHandler) |
Modifier and Type | Method and Description |
---|---|
PCollection<T> |
expand(PCollection<FileIO.ReadableFile> input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
protected abstract DoFn<KV<FileIO.ReadableFile,OffsetRange>,T> |
readRangesFn() |
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setResourceHints, toString, validate, validate
public static final boolean DEFAULT_USES_RESHUFFLE
protected final long desiredBundleSizeBytes
protected final SerializableFunction<java.lang.String,? extends FileBasedSource<InT>> createSource
protected final ReadAllViaFileBasedSource.ReadFileRangesFnExceptionHandler exceptionHandler
protected final boolean usesReshuffle
public ReadAllViaFileBasedSourceTransform(long desiredBundleSizeBytes, SerializableFunction<java.lang.String,? extends FileBasedSource<InT>> createSource, Coder<T> coder)
public ReadAllViaFileBasedSourceTransform(long desiredBundleSizeBytes, SerializableFunction<java.lang.String,? extends FileBasedSource<InT>> createSource, Coder<T> coder, boolean usesReshuffle, ReadAllViaFileBasedSource.ReadFileRangesFnExceptionHandler exceptionHandler)
public PCollection<T> expand(PCollection<FileIO.ReadableFile> input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PCollection<FileIO.ReadableFile>,PCollection<T>>
protected abstract DoFn<KV<FileIO.ReadableFile,OffsetRange>,T> readRangesFn()