@Deprecated public class GenericDataSink extends GenericDataSinkBase<Record>
OutputFormat.formatWrapper, inputcompilerHints, name, operatorInfo, parameters| Constructor and Description |
|---|
GenericDataSink(Class<? extends OutputFormat<Record>> f)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation
and a default name. |
GenericDataSink(Class<? extends OutputFormat<Record>> f,
List<Operator<Record>> input)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
GenericDataSink(Class<? extends OutputFormat<Record>> f,
List<Operator<Record>> input,
String name)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
GenericDataSink(Class<? extends OutputFormat<Record>> f,
Operator<Record> input)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation the default name. |
GenericDataSink(Class<? extends OutputFormat<Record>> f,
Operator<Record> input,
String name)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation and the given name. |
GenericDataSink(Class<? extends OutputFormat<Record>> f,
String name)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation
and the given name. |
GenericDataSink(OutputFormat<Record> f)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation
and a default name. |
GenericDataSink(OutputFormat<Record> f,
List<Operator<Record>> input)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
GenericDataSink(OutputFormat<Record> f,
List<Operator<Record>> input,
String name)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
GenericDataSink(OutputFormat<Record> f,
Operator<Record> input)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation the default name. |
GenericDataSink(OutputFormat<Record> f,
Operator<Record> input,
String name)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation and the given name. |
GenericDataSink(OutputFormat<Record> f,
String name)
Deprecated.
Creates a GenericDataSink with the provided
OutputFormat implementation
and the given name. |
| Modifier and Type | Method and Description |
|---|---|
void |
addInput(Operator<Record>... inputs)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
void |
addInputs(List<? extends Operator<Record>> inputs)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
void |
setInputs(List<Operator<Record>> inputs)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
void |
setInputs(Operator<Record>... inputs)
Deprecated.
This method will be removed in future versions. Use the
Union operator instead. |
accept, executeOnCollections, getDataDistribution, getFormatWrapper, getInput, getLocalOrder, getPartitionOrdering, getUserCodeWrapper, setGlobalOrder, setGlobalOrder, setInput, setLocalOrder, setRangePartitioned, setRangePartitioned, toStringcreateUnionCascade, createUnionCascade, createUnionCascade, getCompilerHints, getDegreeOfParallelism, getName, getOperatorInfo, getParameters, setDegreeOfParallelism, setName, setParameter, setParameter, setParameterpublic GenericDataSink(OutputFormat<Record> f, String name)
OutputFormat implementation
and the given name.f - The OutputFormat implementation used to sink the data.name - The given name for the sink, used in plans, logs and progress messages.public GenericDataSink(OutputFormat<Record> f)
OutputFormat implementation
and a default name.f - The OutputFormat implementation used to sink the data.public GenericDataSink(OutputFormat<Record> f, Operator<Record> input)
OutputFormat implementation the default name.
It uses the given operator as its input.f - The OutputFormat implementation used to sink the data.input - The operator to use as the input.@Deprecated public GenericDataSink(OutputFormat<Record> f, List<Operator<Record>> input)
Union operator instead.OutputFormat implementation the default name.
It uses the given contracts as its input.f - The OutputFormat implementation used to sink the data.input - The contracts to use as the input.public GenericDataSink(OutputFormat<Record> f, Operator<Record> input, String name)
OutputFormat implementation and the given name.
It uses the given operator as its input.f - The OutputFormat implementation used to sink the data.input - The operator to use as the input.name - The given name for the sink, used in plans, logs and progress messages.@Deprecated public GenericDataSink(OutputFormat<Record> f, List<Operator<Record>> input, String name)
Union operator instead.OutputFormat implementation and the given name.
It uses the given contracts as its input.f - The OutputFormat implementation used to sink the data.input - The contracts to use as the input.name - The given name for the sink, used in plans, logs and progress messages.public GenericDataSink(Class<? extends OutputFormat<Record>> f, String name)
OutputFormat implementation
and the given name.f - The OutputFormat implementation used to sink the data.name - The given name for the sink, used in plans, logs and progress messages.public GenericDataSink(Class<? extends OutputFormat<Record>> f)
OutputFormat implementation
and a default name.f - The OutputFormat implementation used to sink the data.public GenericDataSink(Class<? extends OutputFormat<Record>> f, Operator<Record> input)
OutputFormat implementation the default name.
It uses the given operator as its input.f - The OutputFormat implementation used to sink the data.input - The operator to use as the input.@Deprecated public GenericDataSink(Class<? extends OutputFormat<Record>> f, List<Operator<Record>> input)
Union operator instead.OutputFormat implementation the default name.
It uses the given contracts as its input.f - The OutputFormat implementation used to sink the data.input - The contracts to use as the input.public GenericDataSink(Class<? extends OutputFormat<Record>> f, Operator<Record> input, String name)
OutputFormat implementation and the given name.
It uses the given operator as its input.f - The OutputFormat implementation used to sink the data.input - The operator to use as the input.name - The given name for the sink, used in plans, logs and progress messages.@Deprecated public GenericDataSink(Class<? extends OutputFormat<Record>> f, List<Operator<Record>> input, String name)
Union operator instead.OutputFormat implementation and the given name.
It uses the given contracts as its input.f - The OutputFormat implementation used to sink the data.input - The contracts to use as the input.name - The given name for the sink, used in plans, logs and progress messages.@Deprecated public void setInputs(Operator<Record>... inputs)
Union operator instead.setInputs in class GenericDataSinkBase<Record>inputs - The operator(s) that form the input.@Deprecated public void setInputs(List<Operator<Record>> inputs)
Union operator instead.setInputs in class GenericDataSinkBase<Record>inputs - The operator(s) that form the input.@Deprecated public void addInput(Operator<Record>... inputs)
Union operator instead.addInput in class GenericDataSinkBase<Record>inputs - The operator(s) to be unioned with the input.@Deprecated public void addInputs(List<? extends Operator<Record>> inputs)
Union operator instead.addInputs in class GenericDataSinkBase<Record>inputs - The operator(s) to be unioned with the input.Copyright © 2015 The Apache Software Foundation. All rights reserved.