use of org.apache.flink.runtime.operators.testutils.UniformIntTupleGenerator in project flink by apache.
the class UniformIntTupleGeneratorInputFormat method open.
@Override
public void open(GenericInputSplit split) throws IOException {
super.open(split);
this.generator = new UniformIntTupleGenerator(keyTotal, valueTotal, false);
}
Aggregations