I am using Spring Kafka consumer, which extracts messages from threads and transfers them to db. If the failure condition is fulfilled, say, for example, that db is unavailable, does the kafka consumer library make a retry mechanism? If so, is there a way to set different retry intervals, such as the 1st retry should be done after 5 minutes, 2nd after 30 minutes, 3rd after 1 hour, etc.
source
share