Skip to content

Instantly share code, notes, and snippets.

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 ledangtuanbk/4a3ef69b58795adb06d96e7aef86a756 to your computer and use it in GitHub Desktop.
Save ledangtuanbk/4a3ef69b58795adb06d96e7aef86a756 to your computer and use it in GitHub Desktop.
Kafka
Serialization
The process of translating data structures or object states into a format that can be stored or transmitted and reconstructed later, possibly in a different computer enviroment.
Serializer vs Deserializer
Serialization formats:
Binary? Data is transmitted/stored as bytes or plaintext
Binary serialization format use less band width
Confluent Community License
You can acess the source code and modify or redistribute it; there is no only one thing you can not do, and that is use it to make a competing SaaS offering.
KSQL
Why
create stream pineapple_pizza as
select crust, size, toppings from pizza where type = 'pineapple';
Developer API's Pyramid
Producer API,
Kafka cluster is core of streaming platform
Streaming application will be build inside the KSQL Server.
This server connect to kafka cluster and consume and produce
Use case:
Streaming Oper
View data : show content of topic
Manipulationg data: Enhaft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment