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

https://github.com/jpoon/kafka-connect-tester


https://github.com/jpoon/kafka-connect-tester

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# kafka-connect-tester

## Setup

```bash
brew install kafka
```

## Development

The [docker-compose.yml](docker-compose.yml) that is included in this repository is based on the Confluent Platform Docker
images. Take a look at the [quickstart](http://docs.confluent.io/3.0.1/cp-docker-images/docs/quickstart.html#getting-started-with-docker-client)
for the Docker images.

The hostname `confluent` must be resolvable by your host. You will need to determine the ip address of your docker-machine using `docker-machine ip confluent`
and add this to your `/etc/hosts` file. For example if `docker-machine ip confluent` returns `192.168.99.100` add this:

```
192.168.99.100 confluent
```

```
docker-compose up -d
```

Start the connector with debugging enabled.

```
./bin/debug.sh
```

Start the connector with debugging enabled. This will wait for a debugger to attach.

```
export SUSPEND='y'
./bin/debug.sh
```