You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit makes it possible to use the Kafka integration of the Flowable event registry by using retries.
The retries mechanism is a mechanism that is build on top of the Spring Kafka Retry mechanism.
Retries are done by sending the records that failed to a different topic depending on a picked strategy.
Once the number of retries reaches the configured max retry count the message will be send to a dead letter topic.
Copy file name to clipboardExpand all lines: modules/flowable-event-registry-model/src/main/java/org/flowable/eventregistry/model/KafkaInboundChannelModel.java
+135Lines changed: 135 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ public class KafkaInboundChannelModel extends InboundChannelModel {
30
30
protectedStringtopicPattern;
31
31
protectedStringclientIdPrefix;
32
32
protectedStringconcurrency;
33
+
protectedRetryConfigurationretry;
33
34
protectedList<CustomProperty> customProperties;
34
35
35
36
publicKafkaInboundChannelModel() {
@@ -77,6 +78,14 @@ public void setConcurrency(String concurrency) {
0 commit comments