Created
March 6, 2019 17:34
-
-
Save vvcephei/99108713ae84e9cb7287d1311e15345b to your computer and use it in GitHub Desktop.
Suppression Blog Figure 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
events | |
.groupByKey() | |
.windowedBy( | |
TimeWindows.of(Duration.ofMinutes(2).withGrace(Duration.ofMinutes(2)) | |
) | |
.count(Materialized.as("count-metric")) | |
.suppress(Suppressed.untilWindowClose(BufferConfig.unbounded())) | |
.filter( _ < 4 ) | |
.toStream() | |
.foreach( /* Send that email! */) | |
// graph servelet queries "count-metric" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment