Created
January 10, 2019 01:16
-
-
Save imrenagi/0b2c181e636d65585b00ede28d2b9214 to your computer and use it in GitHub Desktop.
This file contains 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
PCollection<String> items = ...; | |
PCollection<String> fixedWindowedItems = items.apply( | |
Window.<String>into(FixedWindows.of(Duration.standardMinutes(1))) | |
.withAllowedLateness(Duration.standardDays(2))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment