Last active
November 20, 2018 20:16
-
-
Save novakov-alexey-zz/08a125a151cad8b1d46809c75fd26a28 to your computer and use it in GitHub Desktop.
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
case class Observation(time: Long, value: Double) | |
// contains 4 additional columns we need to calculate for each event | |
case class WindowStats(sum: Double, min: Double, max: Double, count: Int) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment