Skip to content

Instantly share code, notes, and snippets.

@welch
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save welch/85872ad486a56eb9556a to your computer and use it in GitHub Desktop.
Save welch/85872ad486a56eb9556a to your computer and use it in GitHub Desktop.
mixed stream of purchases and customer info
[
{"time":"2015-01-01T00:00:00.000Z", "event":"create", "cust_id":1, "email":"lou@grainger.com"},
{"time":"2015-01-01T00:00:01.000Z", "event":"create", "cust_id":2, "email":"bubba@nytimes.com"},
{"time":"2015-01-01T00:00:02.000Z", "event":"purchase", "cust_id":1, "purchase_id":1},
{"time":"2015-01-01T00:00:03.000Z", "event":"purchase", "cust_id":2, "purchase_id":2},
{"time":"2015-01-01T00:00:04.000Z", "event":"purchase", "cust_id":1, "purchase_id":3},
{"time":"2015-01-01T00:00:05.000Z", "event":"update", "cust_id":1, "email":"louise@grainger.com"},
{"time":"2015-01-01T00:00:06.000Z", "event":"purchase", "cust_id":1, "purchase_id":4},
{"time":"2015-01-01T00:00:07.000Z", "event":"update", "cust_id":1, "email":"larry@grainger.com"},
{"time":"2015-01-01T00:00:08.000Z", "event":"purchase", "cust_id":2, "purchase_id":5},
{"time":"2015-01-01T00:00:09.000Z", "event":"purchase", "cust_id":2, "purchase_id":6},
{"time":"2015-01-01T00:00:10.000Z", "event":"purchase", "cust_id":3, "purchase_id":7},
{"time":"2015-01-01T00:00:11.000Z", "event":"purchase", "cust_id":1, "purchase_id":8}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment