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)
How to configure CommonErrorHandler and ContainerProperties through application.properties in spring boot?
As we know, we do not require to define ConcurrentKafkaListenerContainerFactory bean definition in spring boot with kafka instead we could configure them by these properties. But I could not find any ...
Arun Sai Mustyala
Votes: 0
Answers: 1
How to enable DELIVERY_ATTEMPT header from consumer side in KAFKA?
I have an spring boot kafka consumer application. So as per the documentation added factory.getContainerProperties().setDeliveryAttemptHeader(true); in below and still not able to receive the delivery...
Arun Sai Mustyala
Votes: 0
Answers: 1
Is it possible to query a KSQL Table/Materialized view via HTTP?
I have a materialized view created using
CREATE TABLE average_latency AS SELECT DEVICENAME, AVG(LATENCY) AS AVG_LATENCY FROM metrics WINDOW TUMBLING (SIZE 1 MINUTE) GROUP BY DEVICENAME EMIT CHANGES;
...
Sourabh Mokhasi
Votes: 0
Answers: 2
Uneven partitioner in kafka / no key
I have a topic with 3 partitions with only 1 consumer, and I am using the default partitioner which in this case is "Sticky". everything else by default.
The data sent from the producer does...
user14933383
Votes: 0
Answers: 1