forked from hazelcast/hazelcast-jet-code-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTradingVolumeOverTime.java
81 lines (75 loc) · 3.26 KB
/
TradingVolumeOverTime.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import com.hazelcast.jet.Jet;
import com.hazelcast.jet.JetInstance;
import com.hazelcast.jet.pipeline.Pipeline;
import com.hazelcast.jet.pipeline.Sinks;
import support.TradingVolumeGui;
import static com.hazelcast.jet.aggregate.AggregateOperations.summingLong;
import static com.hazelcast.jet.pipeline.WindowDefinition.tumbling;
import static java.util.concurrent.TimeUnit.SECONDS;
import static support.TradeGenerator.MAX_LAG;
import static support.TradeGenerator.tradeSource;
/**
* Showcases the Early Window Results feature of the Pipeline API.
* <p>
* The sample Jet pipeline uses a mock data source that generates random
* trade events. The source also simulates the disorder in the event stream,
* so some events come on time and some are late by up to five seconds.
* <p>
* The pipeline calculates for each 2-second period the total amount of
* money that changed hands over that period. Since there's disorder in the
* event stream, the final result for a given time period becomes known
* only after a five-second delay.
* <p>
* We want to see some results immediately, even if incomplete, so we
* enable early result emission on Jet's windowing operator. With this
* change, Jet will keep emitting the current incomplete results as the
* events are still coming in.
* <p>
* The sample also starts a GUI window that visualizes the progress of
* early results gradually becoming complete. Each bar in the chart
* represents a two-second window, so with the disorder of 5 seconds,
* there are three to four bars rising at any point in time.
*/
public class TradingVolumeOverTime {
private static final String VOLUME_LIST_NAME = "trading-volume";
private static final int TRADES_PER_SEC = 3_000;
private static final int DURATION_SECONDS = 60;
private static Pipeline buildPipeline() {
Pipeline p = Pipeline.create();
p.drawFrom(tradeSource(TRADES_PER_SEC, DURATION_SECONDS))
.withNativeTimestamps(MAX_LAG)
.window(tumbling(SECONDS.toMillis(2))
// comment out this line to see how the chart behaves without early results:
.setEarlyResultsPeriod(20)
)
.aggregate(summingLong(trade -> trade.getQuantity() * trade.getPrice()))
.drainTo(Sinks.list(VOLUME_LIST_NAME));
return p;
}
public static void main(String[] args) {
System.setProperty("hazelcast.logging.type", "log4j");
JetInstance jet = Jet.newJetInstance();
new TradingVolumeGui(jet.getList(VOLUME_LIST_NAME));
Jet.newJetInstance();
try {
jet.newJob(buildPipeline()).join();
} finally {
Jet.shutdownAll();
}
}
}