Paul Reardon
Paul Reardon
MsSql outbox https://github.com/BrighterCommand/Brighter/blob/454599d09f39acfafe6059c03a1f51c24c097a70/src/Paramore.Brighter.Outbox.MsSql/MsSqlOutbox.cs#L533 https://github.com/BrighterCommand/Brighter/blob/454599d09f39acfafe6059c03a1f51c24c097a70/src/Paramore.Brighter.Outbox.MsSql/MsSqlOutbox.cs#L502
I would like to add the following functionality to the outbox - A Retry counter (for explicitly clearing) so that if there is an issues that stops the message from...
The outbox can tend to get quite big, some people decide to implement their own solutions, it would be a lot better if Brighter could manage these - Ability to...
@IlSocio Here is my implementation for #2104 This requires a small change to the ctor of CommandProvider / the DI stuff around it, instead of passing a IAmABoxTransactionConnectionProvider there is...
At the minute, when create a subscription you can set the following - Max Delivery Count - Dead Lettering on Message Expiration - Lock Duration - Default Message Time to...
Using the ServiceBusReceiver.DeferMessage it may be possible to just put the message back on the same queue (subscription)
A first look at open telemetry inside of brighter relates to issue: #301
Added IAmABulkOutboxAysnc Plumbed in a Bulk Deposit Post Implimented IAmABulkOutboxAsync for MsSql and InMemory #2251 @iancooper @holytshirt @DevJonny Let me know what you think about this approach
I have a requirement to dispatch a batch of commands, i.e. for Pay Interest, all accounts are batched into chunks and then I sent thousands of PayInterestToAccountsCommand **Describe the solution...
### Describe the bug When trying to clear a message in the MSSQL outbox and it has a null body, an exception is thrown When trying to insert a message...