silverback icon indicating copy to clipboard operation
silverback copied to clipboard

Silverback is a simple but feature-rich message bus for .NET core (it currently supports Kafka, RabbitMQ and MQTT).

Results 32 silverback issues
Sort by recently updated
recently updated
newest added

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies
.NET

The application is designed as a modular monolith. Where each module communicates with another via kafka. Therefore, there are multiple DbContexts in one project. I want to use the Outbox...

enhancement

I expect "ActualEndpointName" equals "EndpointName" in the outbox table, but it's defferent (see screanschort). Here outbound configuration ``` .AddOutbound(endpoint => endpoint .ProduceTo(nameof(NotifyPaymentEvent)) .WithKafkaKey(envelope => envelope.Message.Id) .Configure(producerConfig) .SerializeAsJsonUsingNewtonsoft() .ProduceToOutbox()) ``` This...

bug

There are cron jobs, which are produce events. So I want to push event into outobox without using of DbContext (just to handle if queue doesn't work). Does Silverback help...

After some time idle, consumer stop to read messages from Kafka (without errors and logs). I need to re-run consumer to start reading again. Have you any ideas?

I have just started investigating Silverback to use with Kafka. Apologies for the simple question: _What is the recommended pattern for creating and configuring topics in Kafka when using Silverback?_...

enhancement
discussion

Maybe the behaviour I'm encountering is expected by design like so, but it may be worth asking... I have a Query Handler (obviously registered) named `ReceivedDocumentQueriesHandler`. This handler, handles a...

enhancement

`Task IPublisher.PublishAsync(object, CancellationToken)` The cancellation token would be passed to the subscribing methods that could declare an additional parameter of type `CancellationToken`. `public Task OnMessageReceived(MyCommand command, CancellationToken cancellationToken) { ......

enhancement