Sumit Singh
06/08/2023, 7:22 AMCaused by: <http://org.apache.flink.kafka.shaded.org|org.apache.flink.kafka.shaded.org>.apache.kafka.common.errors.TimeoutException: Topic flink not present in metadata after 60000 ms.
Martijn Visser
06/08/2023, 7:53 AMMartijn Visser
06/08/2023, 7:53 AMSumit Singh
06/08/2023, 7:57 AMFlink SQL> CREATE TABLE KafkaSinkTable (
> id INT primary key not enforced,
> net_score INT
> ) WITH (
> 'connector' = 'upsert-kafka',
> 'topic' = 'flink',
> 'properties.bootstrap.servers' = 'xxxx-xxxxxx.ap-south-1.aws.confluent.cloud:9092',
> 'key.format' = 'json' , 'value.format' = 'json' );
David Anderson
06/08/2023, 3:03 PM'properties.sasl.jaas.config' = 'org.apache.kafka.common.security.plain.PlainLoginModule required username="API_KEY" password="API_SECRET";',
See https://developer.confluent.io/courses/apache-flink/deploying-an-etl-pipeline-using-flink-sql-exercise/#create-a-table-backed-by-kafka for more details.Sumit Singh
06/08/2023, 8:12 PMjavax.security.auth.login.LoginException: No LoginModule found for org.apache.kafka.common.security.plain.PlainLoginModule
Martijn Visser
06/08/2023, 8:20 PMSumit Singh
06/08/2023, 8:39 PM