Skip to main content
Solved

The configuration = was supplied but isn't a known config

  • October 11, 2021
  • 1 reply
  • 3674 views

Dash
Headliner
Forum|alt.badge.img+3
  • Senior Technical Evangelist and Developer Advocate at Snowflake
  • 67 replies

I have a StreamSets Data Collector running in Docker and when I run a pipeline with Kafka Consumer I am seeing these error messages:

The configuration = was supplied but isn't a known config
The configuration schema.registry.url = was supplied but isn't a known config

 How do I get past this error?

Best answer by Dash

The most probable cause of this is network connectivity. You should ensure that the Kafka endpoint is accessible from within Data Collector's Docker container. Here are a couple of things you can try:

docker exec -it <container_id> bash

Then from the Docker container, run:

nc -v -z -w2 <kafka_host> 9092

And if you are running Kafka cluster on AWS, set the security group of your MSK cluster to be the same as your client machine and your Data Collector's EC2 instance's security groups. Then, add an inbound rule to that security group allowing "all traffic" from itself (the security group). For more details on this, click here.

View original
Did this topic help you find an answer to your question?

1 reply

Dash
Headliner
Forum|alt.badge.img+3
  • Author
  • Senior Technical Evangelist and Developer Advocate at Snowflake
  • 67 replies
  • Answer
  • October 11, 2021

The most probable cause of this is network connectivity. You should ensure that the Kafka endpoint is accessible from within Data Collector's Docker container. Here are a couple of things you can try:

docker exec -it <container_id> bash

Then from the Docker container, run:

nc -v -z -w2 <kafka_host> 9092

And if you are running Kafka cluster on AWS, set the security group of your MSK cluster to be the same as your client machine and your Data Collector's EC2 instance's security groups. Then, add an inbound rule to that security group allowing "all traffic" from itself (the security group). For more details on this, click here.


Reply