This message was deleted.
# troubleshooting
s
This message was deleted.
b
You could HARD RESET your supervisor and then it will start reading from the first available offset.
s
yeah, that is what we had to do currently but it is very difficult to hard reset all the time. 🙂
g
in general i would recommend setting
resetOffsetAutomatically: false
— automatic reset generally "papers over" problems that could be better solved in different ways
in normal situations (consumer keeps up with producer) the consumer should never fall out of range
very strange to see this happen with so low load (7–10 messages/s) — generally when I've seen issues it's been to consumer being overloaded and falling behind
is your kafka retention period extremely short? like similar to or even less than your
taskDuration
?
(default is 1 hour duration; kafka retention should generally be minimum 4x
taskDuration
but even higher multiples are more ideal; they give you better ability to recover from failures)
s
The kafka retention is set to 1 day for the topic
The task duration is set to an hour in supervisor task -
"taskDuration": "PT3600S",
g
hmm, well, that was my big idea! — i'm not sure what could be going on here