https://github.com/xmlking/kafka-kstream
* [try kotlin avro serializer: avro4k-kafka-serializer](https://github.com/thake/avro4k-kafka-serializer)
https://github.com/xmlking/kafka-kstream
Last synced: 10 months ago
JSON representation
* [try kotlin avro serializer: avro4k-kafka-serializer](https://github.com/thake/avro4k-kafka-serializer)
- Host: GitHub
- URL: https://github.com/xmlking/kafka-kstream
- Owner: xmlking
- Created: 2017-12-23T04:27:39.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-23T21:10:09.000Z (about 8 years ago)
- Last Synced: 2025-01-30T05:43:21.961Z (12 months ago)
- Language: Java
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Kafka-kstream-test
==================
### Issue
code works with `org.springframework.cloud:spring-cloud-stream-binder-kstream` and Kafka 0.10.1.1
but not with `org.springframework.cloud:spring-cloud-stream-binder-kstream11:1.3.0.RELEASE` and Kafka 0.11.0.1
### How to reproduce
```bash
# start kafka 0.11.0.1
docker-compose up
# or start kafka 0.11.0.1
docker-compose -f docker-compose-11.yml up
```
```bash
gradle bootRun
```
```bash
docker-compose exec kafka bash
kafka-topics.sh --list --zookeeper zookeeper:2181
kafka-console-producer.sh --broker-list kafka:9092 --topic words
```
```bash
docker-compose exec kafka bash
kafka-console-consumer.sh --bootstrap-server kafka:9092 --topic counts --from-beginning --property print.key=true
```