Skip to content

Commit

Permalink
Include converters + schema disable by default in docs
Browse files Browse the repository at this point in the history
For Confluent, these elements need to be specified if you're using datagen to put data in.

Using REST and the UI also both work with these options so adding this in seems to be the most robust way to get someone started.
  • Loading branch information
tomczoink committed Jul 25, 2023
1 parent 752d748 commit c8f7e7e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ It is possible to use the connector as a plugin on Confluent Cloud as a [Custom
"client.id": "Ably-Kafka-Connector",
"channel": "#{topic}",
"message.name": "#{topic}_message",
"client.key": "<YOUR_ABLY_API_KEY>"
"client.key": "<YOUR_ABLY_API_KEY>",
"key.converter": "org.apache.kafka.connect.converters.ByteArrayConverter",
"value.converter": "org.apache.kafka.connect.converters.ByteArrayConverter",
"value.converter.schemas.enable": "false"
}
```
7. When asked for an endpoint, enter `rest.ably.io:443:TCP`
Expand Down

0 comments on commit c8f7e7e

Please sign in to comment.