Re: Kstream to Kafka table

2019-10-04 Thread Boyang Chen
I'm not KSQL expert, but if you want to write SQL queries as commands, you could check some instructions here: https://docs.confluent.io/current/ksql/docs/developer-guide/index.html which is built on top of Kafka Streams. On Fri, Oct 4, 2019 at 2:27 PM KhajaAsmath Mohammed wrote: > Thanks Chen.

Re: Kstream to Kafka table

2019-10-04 Thread KhajaAsmath Mohammed
Thanks Chen. Can we do through commands instead of using programming library? Sent from my iPhone > On Oct 4, 2019, at 3:51 PM, Boyang Chen wrote: > > Hey Asmath, > > just for the KStream question, feel free to checkout our official doc: > https://kafka.apache.org/23/documentation/streams/deve

Re: Kstream to Kafka table

2019-10-04 Thread Boyang Chen
Hey Asmath, just for the KStream question, feel free to checkout our official doc: https://kafka.apache.org/23/documentation/streams/developer-guide/dsl-api.html if you need to push to a output topic, in DSL there is a #to(String topic) function which will write the stream output to your intended

Kstream to Kafka table

2019-10-04 Thread KhajaAsmath Mohammed
Hi, I have kstreams table that was created from select statement of ksql table and kstreams. Since kstream is process, how do I need to push the data into kafka topic from this stream? I also want the schema to be created in schema registry for this topic. Thanks, Asmath