当前位置: 首页>>代码示例>>Java>>正文


Java DataSet.minBy方法代码示例

本文整理汇总了Java中org.apache.flink.api.java.DataSet.minBy方法的典型用法代码示例。如果您正苦于以下问题:Java DataSet.minBy方法的具体用法?Java DataSet.minBy怎么用?Java DataSet.minBy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.flink.api.java.DataSet的用法示例。


在下文中一共展示了DataSet.minBy方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testMinByKeyFieldsDataset

import org.apache.flink.api.java.DataSet; //导入方法依赖的package包/类
/**
 * This test validates that no exceptions is thrown when an empty dataset
 * calls minBy().
 */
@Test
public void testMinByKeyFieldsDataset() {

	final ExecutionEnvironment env = ExecutionEnvironment
			.getExecutionEnvironment();
	DataSet<Tuple5<Integer, Long, String, Long, Integer>> tupleDs = env
			.fromCollection(emptyTupleData, tupleTypeInfo);

	// should work
	try {
		tupleDs.minBy(4, 0, 1, 2, 3);
	} catch (Exception e) {
		Assert.fail();
	}
}
 
开发者ID:axbaretto,项目名称:flink,代码行数:20,代码来源:MinByOperatorTest.java

示例2: testCustomKeyFieldsDataset

import org.apache.flink.api.java.DataSet; //导入方法依赖的package包/类
/**
 * This test validates that an InvalidProgramException is thrown when minBy
 * is used on a custom data type.
 */
@Test(expected = InvalidProgramException.class)
public void testCustomKeyFieldsDataset() {

	final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();

	this.customTypeData.add(new CustomType());

	DataSet<CustomType> customDs = env.fromCollection(customTypeData);
	// should not work: groups on custom type
	customDs.minBy(0);
}
 
开发者ID:axbaretto,项目名称:flink,代码行数:16,代码来源:MinByOperatorTest.java

示例3: testOutOfTupleBoundsDataset1

import org.apache.flink.api.java.DataSet; //导入方法依赖的package包/类
/**
 * This test validates that an index which is out of bounds throws an
 * IndexOutOfBoundsException.
 */
@Test(expected = IndexOutOfBoundsException.class)
public void testOutOfTupleBoundsDataset1() {

	final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
	DataSet<Tuple5<Integer, Long, String, Long, Integer>> tupleDs = env.fromCollection(emptyTupleData, tupleTypeInfo);

	// should not work, key out of tuple bounds
	tupleDs.minBy(5);
}
 
开发者ID:axbaretto,项目名称:flink,代码行数:14,代码来源:MinByOperatorTest.java

示例4: testOutOfTupleBoundsDataset2

import org.apache.flink.api.java.DataSet; //导入方法依赖的package包/类
/**
 * This test validates that an index which is out of bounds throws an
 * IndexOutOfBoundsException.
 */
@Test(expected = IndexOutOfBoundsException.class)
public void testOutOfTupleBoundsDataset2() {

	final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
	DataSet<Tuple5<Integer, Long, String, Long, Integer>> tupleDs = env.fromCollection(emptyTupleData, tupleTypeInfo);

	// should not work, key out of tuple bounds
	tupleDs.minBy(-1);
}
 
开发者ID:axbaretto,项目名称:flink,代码行数:14,代码来源:MinByOperatorTest.java

示例5: testOutOfTupleBoundsDataset3

import org.apache.flink.api.java.DataSet; //导入方法依赖的package包/类
/**
 * This test validates that an index which is out of bounds throws an
 * IndexOutOfBoundsException.
 */
@Test(expected = IndexOutOfBoundsException.class)
public void testOutOfTupleBoundsDataset3() {

	final ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment();
	DataSet<Tuple5<Integer, Long, String, Long, Integer>> tupleDs = env.fromCollection(emptyTupleData, tupleTypeInfo);

	// should not work, key out of tuple bounds
	tupleDs.minBy(1, 2, 3, 4, -1);
}
 
开发者ID:axbaretto,项目名称:flink,代码行数:14,代码来源:MinByOperatorTest.java


注:本文中的org.apache.flink.api.java.DataSet.minBy方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。