Skip to content

raghavan20/kafka-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kakfa examples

Producers and consumers - basic usage

ProducerMain produces simple records with key of type String and value of type Long. ConsumerMain and ConsumerMainAssignmentMain consume records. They demonstrate how to automatically receive partition assignments vs manually assigning partitions and controlling from which offset to read from.

orders example - kafka with avro

Run OrderProducerMain to produce order records and run OrderConsumerMain to consume order records.

Dependencies

  • zookeeper
  • kafka
  • schema-registry

The examples are tested with confluent-5.0.0 downloadable from Confluent. All services could be started from the downloaded artifact. Alternatively used docker-compose to bring up Kafka and Zookeeper and use downloaded Confluent artifact to bring up schema-registry

Download from Confluent Open Source

Avro

Avro is the default choice to associate schema to topics. The examples in this project demonstrate how to serialize a record / logical type to JSON or binary format using Avro encoders.

Sample use of Avro by itself

AvroSampleUsageApp demonstrates how can be used to generate serialized form of types either in JSON or binary form. Documentation

This example does not use Java model classes for User and Order. If using model classes, code generation is required to serialize and deseralize with Avro. Documentation

** Dependencies **

  • Maven dependency: org.apache.avro:avro:1.8.2

TODO

  • basic streaming example: count
  • stream example: sum
  • stream example: joins
  • stream with Avro
  • stream with SchemaRegistry

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages