I'm using jetstream with interest approach.
I see that to create a dead-letter, one of the approach is binding to event of $JS.EVENT.ADVISORY.CONSUMER.MAX_DELIVERIES and call to get particular message to save it.
I try it using the subscribe function and work's ok, but I'm interested to create a consumer to avoid losing messages, I cannot loss any message.
When I try to create a consumer with tolling specifying the token event like (it's only a sample):
nats consumer add DOMAIN -s nats://nats:4222 deadletter --pull --deliver=all --wait=10s --ack=explicit --replay=instant --filter="$JS.EVENT.ADVISORY.CONSUMER.MAX_DELIVERIES.MYSTREAM.my_consumer" --max-deliver=1 --max-pending=1000 --backoff=none --no-headers-only
It's possible to create a consumer of nats events?
You need to create a stream that consumes the special subject
$JS.EVENT.ADVISORY.CONSUMER.MAX_DELIVERIES.{stream_name}.{consumer_name}
:Then you can create a pull consumer to consume messages in the dead-letter stream:
Messages in the dead-letter stream have the following format:
You can use
stream
andstream_seq
fields to retrieve the original failed message: