Stefán Jökull Sigurðarson
Stefán Jökull Sigurðarson
Currently the the new disk/volume performance reporting is inconsistent between providers. For example for WMI it's pulling the number of bytes Read/Write whereas the Orion provider is giving the number...
## Proposed Changes This PR adds [System.IO.Pipelines](https://devblogs.microsoft.com/dotnet/system-io-pipelines-high-performance-io-in-net/) to replace using Channels and Streams to receive and send data to/from the client. * Removes Channels/Streams and replaces them with PipeReader/PipeWriter, which...
This is something that I have been wondering about for some time on what would be the best approach for observability. Since debugging a library like this can be hard,...
The RabbitMQ client currently allocates a lot of unnecessary memory and has a lot of GC overhead. I'm currently working on a PR to reduce the allocations being made, and...
After reading through a few issues (#876, #874) and doing some profiling I think I've found what the underlying issue is. Would love to get input from @danielmarbach, @bollhals and...
I wanted to bring this proposal forward with the aim to simplify the base client interface, and rather make it easier to extend (later proposals, have some ideas there). As...
I'd like to propose that the synchronous consumers/dispatchers be deprecated and removed from the 7.0 client in favor of asynchronous ones, to simplify the basic API. Reasoning: Due to the...
## Proposed Changes This introduces `System.IO.Pipelines` into the RabbitMQ Client. I decided to take the minimal step required to add it, as a way to break down PR number #1199...
## Proposed Changes This is the basic implementation to add OpenTelemetry support to the .NET RabbitMQ Client. This implements an ActivitySource that creates and propagates Activities for BasicPublish (send), BasicDeliver...
To prevent more bugs like #1260 slipping through we should have more thorough integration and unit tests that test most aspects of message (de)serialization. Ideas: * Tests that use most...