Part 7 - Kafka Challenges

Confluent is one of the biggest Apache Kafka ecosystem contributors. And they have addressed many challenges that we might across during its uses. One of them is the Kafka Schema Registry.

Kafka Schema Registry

For more information, please visit the site.

Kafka Connect

Kafka Connect is an api for the developers, intended to make the job of connecting data sources and targets easier and more consistent. The goal is to standardized on a common approach for integrating diverse data sources with standard producer and consumer applications.

Currently there are more than 50 platform connectors available, that are designed to connect to many different products and services, and its growing day by day. Confluent itself has created many of these connectors, for the full-list, you can check it out here.

For more information, please visit the Apache Kafka Connect and Confluent Kafka Connect.

Kafka Streams

It is a new client library for real-time, stream-based processing. Any organization who are already utilizing the kafka, can now have streaming capabilities without having to install, run and maintain other different platforms. It is the same as producer and consumer client library, by extending it with kafka streams library, we can utilize stream-based processing capabilities all within the same place.

For more information, please visit the Apache Kafka Streams and Confluent Kafka Streams.

Series