- Newest
- Most votes
- Most comments
My Msk cluster is up & running with IAM policy.. while connecting to msk from local, need to provide
security.protocol=SASL_SSL
sasl.mechanism=AWS_MSK_IAM
sasl.jaas.config=software.amazon.msk.auth.iam.IAMLoginModule required;
sasl.client.callback.handler.class=software.amazon.msk.auth.iam.IAMClientCallbackHandler
now when we are trying to create a connector , in Configuration settings , we are adding the above configs .. but still getting error : INFO [AdminClient clientId=adminclient-1] Metadata update failed (org.apache.kafka.clients.admin.internals.AdminMetadataManager:235) org.apache.kafka.common.errors.TimeoutException: Call(callName=fetchMetadata, deadlineMs=1746775156865, tries=1, nextAllowedTryMs=1746775156966) timed out at 1746775156866 after 1 attempt
msk & connector are in same vpc... could you give some pointer how to fix it.
connector.class=io.questdb.kafka.QuestDBSinkConnector
topics=test2
tasks.max=10
include.key=false
client.conf.string=http::addr=<IP>:9000;username=admin;password=123;
name=connector2questdb4
value.converter.schemas.enable=false
table=dtest_kf
security.protocol=SASL_SSL
sasl.mechanism=AWS_MSK_IAM
sasl.jaas.config=software.amazon.msk.auth.iam.IAMLoginModule required;
sasl.client.callback.handler.class=software.amazon.msk.auth.iam.IAMClientCallbackHandler
could someone give some idea.. how to resolve ?
answered a year ago
Currently, MSK Connect supports no-auth or IAM only. You won't be able to provide required worker configuration.
answered 2 years ago
Relevant content
asked 2 years ago
asked 3 years ago

this is not an answer to the original post. please make it as a new question, and I'll be happy to answer it.