Akshay Rawat
Akshay Rawat
The PR closes https://github.com/qubole/kinesis-sql/issues/111
I was trying to connect to Kinesis stream from a Spark streaming job running on EME on EKS on a Fargate container. The code snippet I tried is following -...
I was trying Abris library and consuming CDC record generated by Debezium. ``` val abrisConfig: FromAvroConfig = (AbrisConfig .fromConfluentAvro .downloadReaderSchemaByLatestVersion .andTopicNameStrategy(topicName) .usingSchemaRegistry(schemaRegistryURL)) val df=(spark .readStream .format("kafka") .option("kafka.bootstrap.servers", brokerServers) .option("subscribe", topicName)...