T
- The type of the consumed records.@Internal public class FileSystemOutputFormat<T> extends Object implements OutputFormat<T>, FinalizeOnMaster, Serializable
OutputFormat
for batch job. It commit in finalizeGlobal(int)
.Modifier and Type | Class and Description |
---|---|
static class |
FileSystemOutputFormat.Builder<T>
Builder to build
FileSystemOutputFormat . |
Modifier and Type | Method and Description |
---|---|
void |
close()
Method that marks the end of the life-cycle of parallel output instance.
|
void |
configure(Configuration parameters)
Configures this output format.
|
void |
finalizeGlobal(int parallelism)
The method is invoked on the master (JobManager) after all (parallel) instances of an OutputFormat finished.
|
void |
open(int taskNumber,
int numTasks)
Opens a parallel instance of the output format to store the result of its parallel instance.
|
void |
writeRecord(T record)
Adds a record to the output.
|
public void finalizeGlobal(int parallelism)
FinalizeOnMaster
finalizeGlobal
in interface FinalizeOnMaster
parallelism
- The parallelism with which the format or functions was run.public void configure(Configuration parameters)
OutputFormat
This method is always called first on a newly instantiated output format.
configure
in interface OutputFormat<T>
parameters
- The configuration with all parameters.public void open(int taskNumber, int numTasks) throws IOException
OutputFormat
When this method is called, the output format it guaranteed to be configured.
open
in interface OutputFormat<T>
taskNumber
- The number of the parallel instance.numTasks
- The number of parallel tasks.IOException
- Thrown, if the output could not be opened due to an I/O problem.public void writeRecord(T record)
OutputFormat
When this method is called, the output format it guaranteed to be opened.
writeRecord
in interface OutputFormat<T>
record
- The records to add to the output.public void close() throws IOException
OutputFormat
When this method is called, the output format it guaranteed to be opened.
close
in interface OutputFormat<T>
IOException
- Thrown, if the input could not be closed properly.Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.