An open API service indexing awesome lists of open source software.

https://github.com/hstreamdb/kafka-connect-docker


https://github.com/hstreamdb/kafka-connect-docker

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Kafka Connect Images

* hstreamdb/kafka-connect-base: base kafka connect image, which only includes the basic connectors(DatagenConnector, FileStreamConnector).
* hstreamdb/kafka-connect-full: includes built-in rich connector plugins(and all the connectors are under stardand Open-Source Licenses).

## Quickstart

Standalone Mode:
```
docker run -it --rm --network=host
-e KAFKA_BOOTSTRAP_SERVERS=localhost:9092 \
hstreamdb/kafka-connect-full
```

Distributed Mode:
```
docker run -it --rm --network=host
-e KAFKA_BOOTSTRAP_SERVERS=localhost:9092 \
-e CONNECT_MODE=distributed \
hstreamdb/kafka-connect-full
```

The default kafka-connect port is 8083.

## Enable JMX Exporter

```
docker run -it --rm --network=host
-e KAFKA_BOOTSTRAP_SERVERS=localhost:9092 \
-e JMX_EXPORTER_PORT=9900 \
hstreamdb/kafka-connect-full
```