- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Applies an aggregation that gives the current maximum of the data stream at the given field expression by the given key. An independent aggregate is kept per key. A field expression is either the name of a public field or a getter method with parentheses of the {@link DataStream}'s underlying type. A dot can be used to drill down into objects, as in {@code "field1.fieldxy" }.
Applies an aggregation that gives the current element with the maximum value at the given position by the given key. An independent aggregate is kept per key. If more elements have the maximum value at the given position, the operator returns the first one by default.
最佳答案
difference max 和 maxBy 之间是 max 返回最大值,而 maxBy 返回该字段中具有最大值的元素。
keyedStream.max(0);
keyedStream.max("key");
keyedStream.maxBy(0);
keyedStream.maxBy("key");
max
:
// Create a Tumbling Window with the values of 1 day:
.timeWindow(Time.of(1, TimeUnit.DAYS))
// Use the max Temperature of the day:
.max("temperature")
// And perform an Identity map, because we want to write all values of this day to the Database:
.map(new MapFunction<elastic.model.LocalWeatherData, elastic.model.LocalWeatherData>() {
@Override
public elastic.model.LocalWeatherData map(elastic.model.LocalWeatherData localWeatherData) throws Exception {
return localWeatherData;
}
});
maxBy
:
// Now take the Maximum Temperature per day from the KeyedStream:
DataStream<LocalWeatherData> maxTemperaturePerDay =
localWeatherDataByStation
// Use non-overlapping tumbling window with 1 day length:
.timeWindow(Time.days(1))
// And use the maximum temperature:
.maxBy("temperature");
关于apache-flink - KeyedStream 中的 max 和 maxBy 有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54216672/
为什么 var a = Observable.Interval(TimeSpan.FromSeconds(1)) .Publish(); a.Subscribe(o => { Cons
A maxby(list, f) 以对象列表和函数 f 作为参数,这样 f 可应用于任何对象在列表中返回一个数字。然后 maxby 返回 list 中 f(x) 最大的对象 x。 编写类似maxby(
跟进this question我想知道为什么maxBy的 Traversable[T]返回单个值 T而不是 T 的序列(列表或类似的)。这看起来是一个很常见的案例。例如(来自上一个问题): 对于学生名
我想获取属性为最大值的可枚举的所有元素: IEnumerable allOldest = people.GroupBy(p => p.Age) .OrderByDescending(i=>i.
我正在编写一个代码来处理不同省份不同城市的山间小屋。我正在尝试计算每个海拔范围内单个山间小屋中可用的最大床位数量。如果山间小屋的海拔不可用,我会使用其城市的海拔高度。我希望我的方法返回 Map>但我得
我有一个类(class) String和一个 int field 。 public class Data { private String name; private int valu
我正在使用带有 MoreLinq 扩展的 EF5,在生产环境(非常大的数据库)中测试我的程序时,我发现了这一行: var x = db.TheBigTable.MaxBy(x => x.RecordT
Lodash 的 .maxBy 的 JavaScript 等价物是什么?我在 YouTube 上的 minimax 教程中看到了代码 _.maxBy(values, ...)。我不想使用任何外部依赖项
我有一个 SQLite 表,其中混合有整数列和浮点列。我正在尝试获取每列的最大值和最小值。对于整数列,以下代码有效,但在浮点列上使用相同的代码时出现转换错误: let numCats = query{
斯卡拉的Iterable有 maxBy : Finds the first element which yields the largest value measured by function f.
KeyedStream#max(字符串字段) Applies an aggregation that gives the current maximum of the data stream at t
在 C# 10 .Net 6 中新的 MinBy 或 MaxBy 调用之后是否有内联方法来投影属性? double topPriceInList = prices.MaxBy(h => h.High)
我无法编译以下代码(在 onlinegdb 尝试): List> list = Arrays.asList( new Container<>(new Dto("A"),
我正在使用 RandomForestCLassifier 构建模型。这是我的代码, conf = SparkConf() conf.setAppName('spark-nltk') sc = Spar
在 Java Streams 中 - stream.max(Comparator) 之间的区别是什么?和 stream.collect(Collectors.maxBy(Comparator))在性能
我已经在 text classification 上下载了最新更新模板。我创建了一个新应用程序并通过指定应用程序 ID 导入了 stopwords.json 和 emails.json $ pio i
这个问题在这里已经有了答案: Difference between stream.max(Comparator) and stream.collect(Collectors.maxBy(Compar
我是一名优秀的程序员,十分优秀!