Created
November 9, 2017 00:14
-
-
Save benstopford/c0e5dc1706f4f5a20cacd89e72be465a 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
//Execute query in a sidecar | |
ksql> CREATE STREAM orders (ORDERID string, ORDERTIME bigint...) WITH (kafka_topic='orders', value_format='JSON'); | |
ksql> CREATE STREAM platinum_emails as select * from orders, customers where client_level == ‘PLATINUM’ and state == ‘CONFIRMED’; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment