1

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

Scott
  • 21,211
  • 8
  • 65
  • 72
Jason More
  • 6,983
  • 6
  • 43
  • 52

1 Answers1

1

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.

mythz
  • 141,670
  • 29
  • 246
  • 390
  • Thanks, this makes sense. I was hoping to get metrics out of it, but with this knowledge I realized its not meant to do this. – Jason More Apr 24 '14 at 16:34