python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Kafka-connect file sink connector write in parquet file format
I am looking for kafka-connect connector that will write from kafka to local file system in parquet file format.
I don't want to use the hdfs or s3 sink connector for the same.
Aman Jain
Votes: 0
Answers: 1
Apache Kafka Connect Task Restart
I am new to Kafka Connect. I am writing a script which detects kafka connect failed tasks and restarts them. But the restart api which apache kafka has provided doesn't say if the task is actually res...
Rinkle Seth
Votes: 0
Answers: 1
Either no records were produced by the task since the last offset commit or every record has been filtered out
I'm working on a task to setup jdbc kafka connector on my local machine. I went through the setup step by step one by one:
➜ bin ./zookeeper-server-start.sh ../config/zookeeper.properties
➜ bin ./ka...
Arar
Votes: 0
Answers: 0
Kafka Connect SMT - flattening a message
I have a Kafka message that looks like the below.
{
“prop1”: “val1”,
“prop2”: “val2”,
“sub_msg”: {
“prop3”: “val3”,
“prop4”: “val4”,
},
“prop5”: “val5”
}
And I need to f...
balderman
Votes: 0
Answers: 1