Msgs
Queue Configure
Configures retry and DLQ behavior for a consumer group on a topic.
retry_schedule is a list of delays (in millis) between retries after a nack. Once exhausted, the message is moved to the DLQ (or forwarded to dlq_topic if set).
post/api/v1.msgs.queue.configure
Request body
Example request
{
"namespace": "some_namespace",
"topic": "some_topic_name",
"consumer_group": "some_consumer_group",
"dlq_topic": "some_topic_name"
}Response
Example response
{
"dlq_topic": "some_topic_name"
}