Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Clojure examples for Kafka and Kafka Streams (JAVA Interop)

NotificationsYou must be signed in to change notification settings

perkss/clojure-kafka-examples

Repository files navigation

A selection of examples using Kafka and Kafka Streams with Clojure. I wanted to learn the real Kafka API via Clojure not via a Clojure wrapper so here are examples of using the raw API, which is clean and means you do not need to wait for Clojure wrapper libraries to upgrade Kafka.

A guide to the examples can be find in this posthere.

Prerequisites

Expected to be able to set up Zookeeper and Kafka Broker to run the examples. Or use the Confluent platform.The Kafka Stream Examples all have relevant tests rather than running a Jar. Please check individual module README to check how to run.

Unit Test

Check out the unit tests for each file to see it in action without the need for running with Zookeeper and Kafka.

Examples

  • Kafka Producer and Consumer in Clojure using Java interop.
  • Search a Topic and return records that match a Key from beginning to current point in time.
  • Kafka Streaming example to upper case of strings.
  • Kafka Streaming testing example.
  • Kafka Streaming join with two Streams (Left Join, Inner Join, Outer Join)
  • Kafka Streaming join with KTABLE.
  • Avro Kafka deserialization and serialization.
  • KStreamGroup Aggregate
  • TopologyTestDriver
  • More examples to come regularly watch this space ...

Integration Testcontainers

Testcontainers provide the ability to test applications that have docker interactions simply by starting up your containersin our examples Kafka we can then start our applications up against this container and run the tests in a fully integratedtest with Kafka. Awesome!

Kafka and Zookeeper

We have provided our own docker-compose file that will start Kafka and Zookeeper via localhost, so other containers or local apps can access the broker.

Start this using the commanddocker-compose up -d

version:'3'services:zookeeper:image:confluentinc/cp-zookeeper:5.4.1hostname:zookeepercontainer_name:zookeeperports:      -"2181:2181"environment:ZOOKEEPER_CLIENT_PORT:2181ZOOKEEPER_TICK_TIME:2000broker:image:confluentinc/cp-enterprise-kafka:5.4.1hostname:brokercontainer_name:brokerdepends_on:      -zookeeperports:      -"29092:29092"      -"9092:9092"environment:KAFKA_BROKER_ID:1KAFKA_ZOOKEEPER_CONNECT:'zookeeper:2181'KAFKA_LISTENER_SECURITY_PROTOCOL_MAP:PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXTKAFKA_ADVERTISED_LISTENERS:PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR:1KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS:0

Contributions

  • Please get involved and get recognition. If you want to add more examples then raise a PR. Or raise issues for ideas on examples that would be beneficial.

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp