🎄 Happy Holidays! 🥳
Most of Solace is closed December 24–January 1 so our employees can spend time with their families. We will re-open Thursday, January 2, 2024. Please expect slower response times during this period and open a support ticket for anything needing immediate assistance.
Happy Holidays!
Please note: most of Solace is closed December 25–January 2, and will re-open Tuesday, January 3, 2023.
connect solace to kafka (not confluent)
Hi,
I got solace pub/sub running locally. I can publish to a queue under a topic and consume from it via a subscription. I also have kafka/zookeeper running under WSL. I am trying to connect solace to standalone kafka by following Heinz Schaffner's video: https://docs.solace.com/Developer-Tools/Integration-Guides/Kafka-Connect.htm using the Solace source connector.
sudo bin/connect-standalone.sh config/connect-standalone.properties solace.properties
returns this error: Failed to connect to and describe Kafka cluster. Check worker's broker connection and security properties.
I am not sure if I had considered solace.properties correctly. I took the one downloaded from Heinz and replaced the sol.host/sol.username/sol.password/sol.vpn/sol.topic with my own and left everything else alone including all the sol.ssl fields. There may be other things I missed too.
Any help will be appreciated.
Eddie
Comments
-
Eddie:
The first thing a Connector checks is the Kafka access. As you reported this failed, so it never gets to try the Solace connection. The error you received usually is a result of failing to authenticate to the Broker. Have you enabled any authentication or secure transport for your Kafka Brokers? If so, then the connect-standalone.properties file must be updated to reflect the security requirements from the Connect Cluster.
Heinz0