DataSink<T> |
DataSet.output(org.apache.flink.api.common.io.OutputFormat<T> outputFormat) |
Deprecated.
Emits a DataSet using an OutputFormat.
|
DataSink<T> |
DataSet.print(String sinkIdentifier) |
Deprecated.
|
DataSink<T> |
DataSet.printOnTaskManager(String prefix) |
Deprecated.
Writes a DataSet to the standard output streams (stdout) of the TaskManagers that execute the
program (or more specifically, the data sink operators).
|
DataSink<T> |
DataSet.printToErr(String sinkIdentifier) |
Deprecated.
|
DataSink<T> |
DataSet.write(org.apache.flink.api.common.io.FileOutputFormat<T> outputFormat,
String filePath) |
Deprecated.
Writes a DataSet using a FileOutputFormat to a specified location.
|
DataSink<T> |
DataSet.write(org.apache.flink.api.common.io.FileOutputFormat<T> outputFormat,
String filePath,
org.apache.flink.core.fs.FileSystem.WriteMode writeMode) |
Deprecated.
Writes a DataSet using a FileOutputFormat to a specified location.
|
DataSink<T> |
DataSet.writeAsCsv(String filePath) |
Deprecated.
Writes a Tuple DataSet as CSV file(s) to the specified location.
|
DataSink<T> |
DataSet.writeAsCsv(String filePath,
String rowDelimiter,
String fieldDelimiter) |
Deprecated.
Writes a Tuple DataSet as CSV file(s) to the specified location with the specified
field and line delimiters.
|
DataSink<T> |
DataSet.writeAsCsv(String filePath,
String rowDelimiter,
String fieldDelimiter,
org.apache.flink.core.fs.FileSystem.WriteMode writeMode) |
Deprecated.
Writes a Tuple DataSet as CSV file(s) to the specified location with the specified
field and line delimiters.
|
DataSink<T> |
DataSet.writeAsCsv(String filePath,
org.apache.flink.core.fs.FileSystem.WriteMode writeMode) |
Deprecated.
Writes a Tuple DataSet as CSV file(s) to the specified location.
|
DataSink<String> |
DataSet.writeAsFormattedText(String filePath,
TextOutputFormat.TextFormatter<T> formatter) |
Deprecated.
Writes a DataSet as text file(s) to the specified location.
|
DataSink<String> |
DataSet.writeAsFormattedText(String filePath,
org.apache.flink.core.fs.FileSystem.WriteMode writeMode,
TextOutputFormat.TextFormatter<T> formatter) |
Deprecated.
Writes a DataSet as text file(s) to the specified location.
|
DataSink<T> |
DataSet.writeAsText(String filePath) |
Deprecated.
Writes a DataSet as text file(s) to the specified location.
|
DataSink<T> |
DataSet.writeAsText(String filePath,
org.apache.flink.core.fs.FileSystem.WriteMode writeMode) |
Deprecated.
Writes a DataSet as text file(s) to the specified location.
|