kafka-tutorials
kafka-tutorials copied to clipboard
Tutorials and Recipes for Apache Kafka
This can apply to any IoT, but the idea is to write a ksql stream processing app that detects loss. Author of this recipe has creative freedom to define what...
The way `kcat` is used in KT isn't typical since it overrides the `entrypoint` in Docker. See https://github.com/confluentinc/kafka-tutorials/pull/1277 for details.
e.g. https://developer.confluent.io/tutorials/aviation/confluent.html#execute-ksqldb-code is a large block of code with almost no comments. Action: edit all `process.sql` files and add a short comment for each statement
Producing/Consuming Protobuf from the command line
Sink Connector Tutorial (Elasticsearch)
- Bootstrap Services, including latest ES & Kibana (community version) - Generate some random data for the user (maybe build a helper docker image to help user instead of having...
Producing/Consuming JSON from the command line
Augment recipe for “Optimize omni-channel inventory” at https://developer.confluent.io/tutorials/inventory/confluent.html with a little more color from user-provided slidedeck (see slidedeck -- [internal link](https://confluent.slack.com/archives/C02C5M9A9DG/p1650992874554669))
Reference: https://maciejszymczyk.medium.com/ksqldb-real-time-sql-magic-in-the-cybersecurity-scenario-part-1-3232fa711442 Snippet: ``` CREATE TABLE packetbeat_flows_by_1m WITH (KEY_FORMAT='JSON') AS SELECT source -> ip as srcip, source -> port as srcport, destination -> ip as dstip, destination -> port as...