https://github.com/jpoon/kafka-connect-tester
https://github.com/jpoon/kafka-connect-tester
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jpoon/kafka-connect-tester
- Owner: jpoon
- Created: 2018-07-14T07:28:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-14T08:46:31.000Z (almost 7 years ago)
- Last Synced: 2025-01-26T05:24:29.520Z (4 months ago)
- Language: Java
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```