Question

I'm setting up a message queue using ServiceStack-v3 that looks like this

ClaimImport -> Validation -> Success

I've added hundreds of ClaimImports with no problem, the .inq count is correct. The issue is I want to see how many claims were imported by checking the ClaimsImport.outq. It never seems to go past 101. Is there some other way I could check this, or is this max limit intentional?

Max 101 items in dlq

Était-ce utile?

La solution

This is the default limit added on RedisMessageQueueClient.MaxSuccessQueueSize. The purpose of the .outq is to be a rolling log of recently processed messages.

Clients can subscribe to the QueueNames.TopicOut to get notified when a message is published to the .outq.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top