OutputT
- the type of values written to the sink.public abstract static class FileBasedSink.WriteOperation<DestinationT,OutputT>
extends java.lang.Object
implements java.io.Serializable
FileBasedSink
.
The primary responsibilities of the WriteOperation is the management of output files. During
a write, FileBasedSink.Writer
s write bundles to temporary file locations. After the bundles have been
written,
finalize(java.lang.Iterable<org.apache.beam.sdk.io.FileBasedSink.FileResult<DestinationT>>)
is given a list of the temporary files containing the
output bundles.
Subclass implementations of WriteOperation must implement createWriter()
to return a concrete FileBasedSinkWriter.
During the write, bundles are written to temporary files using the tempDirectory that can be
provided via the constructor of WriteOperation. These temporary files will be named {tempDirectory}/{bundleId}
, where bundleId is the unique id of the bundle. For example, if
tempDirectory is "gs://my-bucket/my_temp_output", the output for a bundle with bundle id 15723
will be "gs://my-bucket/my_temp_output/15723".
Final output files are written to the location specified by the FileBasedSink.FilenamePolicy
. If
no filename policy is specified, then the DefaultFilenamePolicy
will be used. The
directory that the files are written to is determined by the FileBasedSink.FilenamePolicy
instance.
Note that in the case of permanent failure of a bundle's write, no clean up of temporary files will occur.
If there are no elements in the PCollection being written, no output will be generated.
Modifier and Type | Field and Description |
---|---|
protected FileBasedSink<?,DestinationT,OutputT> |
sink
The Sink that this WriteOperation will write to.
|
protected ValueProvider<ResourceId> |
tempDirectory
Directory for temporary output files.
|
protected boolean |
windowedWrites
Whether windowed writes are being used.
|
Constructor and Description |
---|
WriteOperation(FileBasedSink<?,DestinationT,OutputT> sink)
Constructs a WriteOperation using the default strategy for generating a temporary directory
from the base output filename.
|
WriteOperation(FileBasedSink<?,DestinationT,OutputT> sink,
ResourceId tempDirectory)
Create a new WriteOperation.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.Map<ResourceId,ResourceId> |
buildOutputFilenames(java.lang.Iterable<FileBasedSink.FileResult<DestinationT>> writerResults) |
protected static ResourceId |
buildTemporaryFilename(ResourceId tempDirectory,
java.lang.String filename)
Constructs a temporary file resource given the temporary directory and a filename.
|
abstract FileBasedSink.Writer<DestinationT,OutputT> |
createWriter()
Clients must implement to return a subclass of
FileBasedSink.Writer . |
java.util.Map<ResourceId,ResourceId> |
finalize(java.lang.Iterable<FileBasedSink.FileResult<DestinationT>> writerResults)
Finalizes writing by copying temporary output files to their final location.
|
FileBasedSink<?,DestinationT,OutputT> |
getSink()
Returns the FileBasedSink for this write operation.
|
void |
removeTemporaryFiles(java.util.Set<ResourceId> filenames) |
void |
setWindowedWrites(boolean windowedWrites)
Indicates that the operation will be performing windowed writes.
|
java.lang.String |
toString() |
protected final FileBasedSink<?,DestinationT,OutputT> sink
protected final ValueProvider<ResourceId> tempDirectory
@Experimental(value=FILESYSTEM) protected boolean windowedWrites
public WriteOperation(FileBasedSink<?,DestinationT,OutputT> sink)
Default is a uniquely named subdirectory of the provided tempDirectory, e.g. if tempDirectory is /path/to/foo/, the temporary directory will be /path/to/foo/temp-beam-foo-$date.
sink
- the FileBasedSink that will be used to configure this write operation.@Experimental(value=FILESYSTEM) public WriteOperation(FileBasedSink<?,DestinationT,OutputT> sink, ResourceId tempDirectory)
sink
- the FileBasedSink that will be used to configure this write operation.tempDirectory
- the base directory to be used for temporary output files.@Experimental(value=FILESYSTEM) protected static ResourceId buildTemporaryFilename(ResourceId tempDirectory, java.lang.String filename) throws java.io.IOException
java.io.IOException
public abstract FileBasedSink.Writer<DestinationT,OutputT> createWriter() throws java.lang.Exception
FileBasedSink.Writer
. This method must not mutate
the state of the object.java.lang.Exception
public void setWindowedWrites(boolean windowedWrites)
public java.util.Map<ResourceId,ResourceId> finalize(java.lang.Iterable<FileBasedSink.FileResult<DestinationT>> writerResults) throws java.lang.Exception
Finalization may be overridden by subclass implementations to perform customized
finalization (e.g., initiating some operation on output bundles, merging them, etc.). writerResults
contains the filenames of written bundles.
If subclasses override this method, they must guarantee that its implementation is idempotent, as it may be executed multiple times in the case of failure or for redundancy. It is a best practice to attempt to try to make this method atomic.
Returns the map of temporary files generated to final filenames. Callers must call removeTemporaryFiles(Set)
to cleanup the temporary files.
writerResults
- the results of writes (FileResult).java.lang.Exception
public void removeTemporaryFiles(java.util.Set<ResourceId> filenames) throws java.io.IOException
java.io.IOException
@Experimental(value=FILESYSTEM) protected final java.util.Map<ResourceId,ResourceId> buildOutputFilenames(java.lang.Iterable<FileBasedSink.FileResult<DestinationT>> writerResults)
public FileBasedSink<?,DestinationT,OutputT> getSink()
public java.lang.String toString()
toString
in class java.lang.Object