Skip to content

Instantly share code, notes, and snippets.

@crcastle
Created December 8, 2017 20:31
Show Gist options
  • Save crcastle/9b6512564c9660cbfac8420833253644 to your computer and use it in GitHub Desktop.
Save crcastle/9b6512564c9660cbfac8420833253644 to your computer and use it in GitHub Desktop.
kafka-streams-test word count
ξ˜‡ ξ‚° ~/src/kafka-streams-on-heroku ξ‚° master 🌷 ξ‚° 59s
πŸ‘‰ h kafka:topics:write tombigbee-17823.textlines "the quick brown fox jumps over the lazy dog" -a kafka-streams-test
ξ˜‡ ξ‚° ~/src/kafka-streams-on-heroku ξ‚° master 🌷 ξ‚°
πŸ‘‰ heroku pg:psql -c 'select * from windowed_counts' HEROKU_POSTGRESQL_URL -a kafka-streams-test
--> Connecting to postgresql-vertical-36453
β”Œβ”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”
β”‚ id β”‚ time_window β”‚ word β”‚ count β”‚
β”œβ”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”€β”€
β”‚ 21 β”‚ 1512765050000 β”‚ brown β”‚ 1 β”‚
β”‚ 22 β”‚ 1512765050000 β”‚ jumps β”‚ 1 β”‚
β”‚ 23 β”‚ 1512765050000 β”‚ over β”‚ 1 β”‚
β”‚ 24 β”‚ 1512765050000 β”‚ the β”‚ 1 β”‚
β”‚ 25 β”‚ 1512765050000 β”‚ the β”‚ 2 β”‚
β”‚ 26 β”‚ 1512765050000 β”‚ dog β”‚ 1 β”‚
β”‚ 27 β”‚ 1512765050000 β”‚ fox β”‚ 1 β”‚
β”‚ 28 β”‚ 1512765050000 β”‚ lazy β”‚ 1 β”‚
β”‚ 29 β”‚ 1512765050000 β”‚ quick β”‚ 1 β”‚
β””β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”˜
(9 rows)
Time: 68.519 ms
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment