From Stream Reactor V6 we have changed some of the connector package names to the io.lenses namespace for consistency between connectors.
io.lenses
If you are upgrading you will need to adjust your connector configurations.
Change the value of the connector.class to replace com.datamountaineer with io.lenses.
connector.class
com.datamountaineer
connector.class=com.datamountaineer.streamreactor.connect.cassandra.sink.CassandraSinkConnector
connector.class=io.lenses.streamreactor.connect.cassandra.sink.CassandraSinkConnector
Several converters are provided as part of our connectors. These are configured in KCQL in the JMS and MQTT connectors.
JMS
MQTT
-- Select from a JMS topic and write to a Kafka topic with a json converter INSERT INTO topicA SELECT * FROM jms_queue WITHTYPE TOPIC WITHCONVERTER=`com.datamountaineer.streamreactor.connect.converters.source.AvroConverter`
-- Select from a JMS topic and write to a Kafka topic with a json converter INSERT INTO topicA SELECT * FROM jms_queue WITHTYPE TOPIC WITHCONVERTER=`io.lenses.streamreactor.connect.converters.source.AvroConverter`
On this page