kafka-questdb-connector icon indicating copy to clipboard operation
kafka-questdb-connector copied to clipboard

QuestDB connector for Kafka.

Results 5 kafka-questdb-connector issues
Sort by recently updated
recently updated
newest added

I had a typo in which I was passing the `client.conf.string=` property, with a trailing equal sign. Of course I had an error message saying this ``` {"error_code":500,"message":"Either 'client.conf.string' or...

enhancement

The connector should log which git revision was built from. This would help with troubleshooting.

good first issue
help wanted

I'm a bit lost about the configuration file. Can I just define in the docker build process and copy it into the right directory? Also not sure which directory to...

The stock sample uses Postgres & Connect images built by the Debezium project. They are pre-configured for Debezium. But real-world-like code samples should use official images. To demonstrate how to...

We're registering Questdb with the Kafka connect via curl using the following: ```bash curl -s -X PUT -H "Content-Type:application/json" http://localhost:8083/connectors/questdb-dietlytics/config -d '{ "connector.class": "io.questdb.kafka.QuestDBSinkConnector", "topics": "dietlytics", "client.conf.string": "http::addr=questdb:9000;", "name": "questdb-dietlytics",...