Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cerner/common-kafka
Common utilities for Apache Kafka
https://github.com/cerner/common-kafka
Last synced: 2 months ago
JSON representation
Common utilities for Apache Kafka
- Host: GitHub
- URL: https://github.com/cerner/common-kafka
- Owner: cerner
- License: apache-2.0
- Archived: true
- Created: 2018-01-08T18:50:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-07T21:20:36.000Z (over 1 year ago)
- Last Synced: 2024-08-03T19:07:55.057Z (6 months ago)
- Language: Java
- Homepage:
- Size: 218 KB
- Stars: 36
- Watchers: 13
- Forks: 32
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-kafka - Cerner Common Kafka utilities
README
# Common Kafka [![Build Status](https://travis-ci.com/cerner/common-kafka.svg?branch=master)](https://travis-ci.com/cerner/common-kafka)
This repository contains common Kafka code supporting Cerner's cloud-based solutions.
For Maven, add the following,
```
com.cerner.common.kafka
common-kafka
3.0com.cerner.common.kafka
common-kafka-connect
3.0com.cerner.common.kafka
common-kafka-test
3.0```
## Project Inventory
The following modules are available for use,
* [common-kafka](common-kafka/README.md): Lightweight wrapper for
[producers](http://kafka.apache.org/32/javadoc/org/apache/kafka/clients/producer/KafkaProducer.html)
and [consumers](http://kafka.apache.org/32/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.html)
in the [kafka-clients](https://github.com/apache/kafka/tree/trunk/clients) library.
* [common-kafka-connect](common-kafka-connect/README.md): Contains
[Kafka Connect](http://kafka.apache.org/documentation.html#connect) component implementations.
* [common-kafka-test](common-kafka-test/README.md): Provides infrastructure for integration or "heavy"
unit tests that need a running Kafka broker and ZooKeeper service.Please refer to the project-specific README documentation for content details.
## Version Requirements
The 3.0 release of common-kafka uses the following dependency versions.
* [Kafka](http://kafka.apache.org/): 3.2.0
* [Metrics](http://metrics.dropwizard.io/): 2.2.0
* [Scala](https://scala-lang.org/): 2.13.5Note that the Scala dependency is only applicable for common-kafka-test.
## Upgrading from common-kafka 2.x to 3.0
* The common-kafka-admin module has been removed, KafkaAdminClient can be replaced by Kafka's [admin client](https://github.com/apache/kafka/blob/3.2.0/clients/src/main/java/org/apache/kafka/clients/admin/AdminClient.java)
* KafkaBrokerTestHarness has been updated to require TestInfo in the setup method, which requires junit5.
By extending AbstractKafkaTests instead of using KafkaBrokerTestHarness directly you can avoid needing to add a junit5 dependency.## Contribute
You are welcome to contribute to Common-Kafka.
Read our [Contribution guidelines](CONTRIBUTING.md).
## License
```
Copyright 2017 Cerner Innovation, Inc.Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.