Skip to content

Instantly share code, notes, and snippets.

@dasch
Last active July 21, 2016 11:50
Show Gist options
  • Save dasch/7ffc8d87327b22622aecf16c3b0728b7 to your computer and use it in GitHub Desktop.
Save dasch/7ffc8d87327b22622aecf16c3b0728b7 to your computer and use it in GitHub Desktop.
impressions : Stream (ImpressionId, Impression)
clicks : Stream (ImpressionId, Click)
-- One element per key with lists of input elements.
matches : Stream (ImpressionId, (List Impression, List Click))
matches =
Stream.join impressions clicks
-- One element per input-pair match.
matches : Stream (ImpressionId, (Impression, Click))
matches =
Stream.join impressions clicks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment