Skip to content

feat(streaming): add RabbitMQ Streams provider - #8273

Open
iuribrindeiro wants to merge 14 commits into
dotnet:mainfrom
iuribrindeiro:rabbitmq-stream
Open

feat(streaming): add RabbitMQ Streams provider#8273
iuribrindeiro wants to merge 14 commits into
dotnet:mainfrom
iuribrindeiro:rabbitmq-stream

Conversation

@iuribrindeiro

@iuribrindeiro iuribrindeiro commented Jan 20, 2023

Copy link
Copy Markdown

Hello, hello. So, I've been working on a RabbitMQ stream provider implementation and today I think that I have something ready to demonstrate and ask for feedback.

The existing RabbitMQ implementations

I know that we have these 2 RabbitMQ implementations for Orleans:

These are quite old and are not maintained anymore. I did base myself on these libraries of how to write the IQueueAdapter, IQueueAdapterReceiver, and others on this PR. But the main difference between this implementation and these other 2 libraries is that I'm not using the classic RabbitMQ queues. Instead, it will use the "new" RabbitMQ Streams implementation, so allowing us to use this provider as a Rewindable stream.

There are still a few things to do here, and again, this is a WIP but I really wanted some feedback here either to back off or to change something.

Questions I have:

  1. A custom Queue Cache Cursor. I spent some time trying to use SimpleQueueCache here like it is being used by SQS and AzureQueue but no success. I was either loosing messages or getting duplicated messages. I saw this issue regarding the MessagesDeliveredAsync so I assumed there was no priority to fix SimpleQueueCache and I was very afraid to play with it for now since it is used by other providers. Let me know what you guys think. I might need help to fix it tho, not sure. One thing is for sure though, this RabbitMqStreamProvider needs the MessagesDeliveredAsync to be called only when all messages are delivered to all consumers successfully as per documentation.

  2. When refreshing a consumer cursor (here), there is a scenario that the current cursor is already running (it is Active) but it is on the last message. Since the consumer is running on a different thread, the following race condition could happen:

Thread A -----------Refresh Cursor-----Check if it is Inactive----Cursor was still Active here;

Thread B ----MoveNext from last message at the time-------------------Set cursor to inactive;

  • Not sure if this is clear enough. I prob failed to explain, but basically a race condition is happening and letting cursors that have messages to process inactive. I fixed it with a lock on the consumerData for now, but I think I could use the Interlocked.Exchange as well, will try very soon. I tried to find issues with similar problems but couldn't find, so this is prob an issue with just my cursor @benjaminpetit is this related to this issue: EventHub Stream Provider doesn't refresh cursor on new data #7686 (comment) ?

Things left to do:

  • Tests. I never wrote any tests with Orleans (and tbh, this is my first time ever playing with Orleans) so I will be taking a look at how you guys did the tests for the EventHub provider. This is my priority for now, since I had such a bad time writing the RabbitMqQueueCacheCursor because it was hard to fix something, like making sure messages don't get duplicated without breaking something else

  • Comments, a lot of comments. I tried to focus a bit on commenting on some stuff but at some point, I was just interested in solving issues regarding the implementation. There is still a lot to comment and a lot to refactor as well.

  • Make RabbitMqQueueCacheCursor consumer independent, so that every consumer can process messages at it is own pace.

  • Consume previous failed messages that are too old. If I have a message that failed and no more messages are published to that same stream in a while, that message won't be retried (except for the times the pulling agent already did it) at all. For now, the pulling agent will only retry to process this failed message once a new message for that same stream arrives, making the consumer active again. I don't really know how, or if, other stream providers handle this but I'm gonna take a look.

  • rabbitmq-stream-dotnet-client has almost no .ConfigureAwait(false). I was facing a lot of deadlocks because of that, since they also do .Result or .GetAwaiter().GetResult() internally. I'll also open PR's there to fix this. I don't think we could ship this provider without these changes tho. See: Remove `.Result` inside `Client.MaybeClose` method rabbitmq/rabbitmq-stream-dotnet-client#222

Microsoft Reviewers: Open in CodeFlow

@dnfadmin

dnfadmin commented Jan 20, 2023

Copy link
Copy Markdown

CLA assistant check
All CLA requirements met.

Comment thread Directory.Packages.props Outdated
@ElanHasson

Copy link
Copy Markdown
Contributor

@iuribrindeiro This is awesome! Thank you for putting this together!

@iuribrindeiro

Copy link
Copy Markdown
Author

@iuribrindeiro This is awesome! Thank you for putting this together!

I'm just so glad to be helping!
I'm still fixing some issues with concurrency or some messages that are getting lost or duplicated.
Should have some decent version very soon.

I tried to use the SimpleQueueCache here but I saw some issues regarding calling the Receiver.MessagesDeliveredAsync prematurely and I did replicate this my self locally while doing some wild message consuming (millions of messages). I just pushed a few changes to the new RabbitMqQueueCache and I think that I have solved most, or all, of the issues I was seeing before. Compared to SimpleQueueCache, at least I'm not loosing messages anymore or duplicating those :)

Comment thread Directory.Packages.props Outdated
@bradygaster

Copy link
Copy Markdown
Member

Thanks for sharing this with the community, @iuribrindeiro. Curious if you've socialized this on the Orleans Discord channel to get some feedback from folks. Exciting stuff, considering how many .NET users are already RabbitMQ users.

@iuribrindeiro

Copy link
Copy Markdown
Author

Thanks for sharing this with the community, @iuribrindeiro. Curious if you've socialized this on the Orleans Discord channel to get some feedback from folks. Exciting stuff, considering how many .NET users are already RabbitMQ users.

I hadn't tried that yet! But great idea, just joined there and seems like the PR is already known over there xD

@iuribrindeiro
iuribrindeiro force-pushed the rabbitmq-stream branch 2 times, most recently from 7e26df5 to d789e35 Compare February 20, 2023 15:17
@SalimiHabib

Copy link
Copy Markdown

hi
does this stream provider need to connect to RabbitMQ instances in cluster (each silo having one or more instance of RabbitMQ) .
can it connect to one instance of RabbitMQ in Orleans cluster?
if it can connect to multiple instance , how load can be managed ?
Thank you

@iuribrindeiro

iuribrindeiro commented Feb 21, 2023

Copy link
Copy Markdown
Author

hi does this stream provider need to connect to RabbitMQ instances in cluster (each silo having one or more instance of RabbitMQ) . can it connect to one instance of RabbitMQ in Orleans cluster? if it can connect to multiple instance , how load can be managed ? Thank you

This is a really good question. I'm using the RabbitMQ Stream client, so yes, it can. You would just have to follow their instructions to connect to a Multi Host environment.

Here is how you would configure the stream provider with a custom RabbitMQ Stream configuration: https://github.com/dotnet/orleans/pull/8273/files#diff-871fbbd5e1d7a137910d48854bf3970bc069efa7f1cd9fceb79cf4e58b2c7dc3R71

@pittlm

pittlm commented Mar 26, 2025

Copy link
Copy Markdown

Hi,
I just wanted to ask if there is any plan to realize this approach ? I would really love to use a Rabbit MQ Broker because it would simplify hosting, local testing etc IMHO.

I really appreciate the efforts making the Pull Request so this is not intended to sound rude, but it would give me clarity if I need to make one on my own or not.

@iuribrindeiro

Copy link
Copy Markdown
Author

Hi, I just wanted to ask if there is any plan to realize this approach ? I would really love to use a Rabbit MQ Broker because it would simplify hosting, local testing etc IMHO.

I really appreciate the efforts making the Pull Request so this is not intended to sound rude, but it would give me clarity if I need to make one on my own or not.

Unfortunately I ran out of time for this side project of mine (which is really sad for me because I was having a lot of fun). So, I don't see my self working on this anymore in near future :(

@ReubenBond ReubenBond changed the title RabbitMQ Stream provider feat: add RabbitMQ Streams provider Aug 21, 2026
@ReubenBond ReubenBond changed the title feat: add RabbitMQ Streams provider feat(streaming): add RabbitMQ Streams provider Aug 21, 2026
@ReubenBond
ReubenBond marked this pull request as ready for review August 21, 2026 22:32
@ReubenBond
ReubenBond self-requested a review as a code owner August 21, 2026 22:32
Copilot AI lite review requested due to automatic review settings August 21, 2026 22:32
@dotnet-policy-service

Copy link
Copy Markdown
Contributor

@iuribrindeiro please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.

@dotnet-policy-service agree [company="{your company}"]

Options:

  • (default - no company specified) I have sole ownership of intellectual property rights to my Submissions and I am not making Submissions in the course of work for my employer.
@dotnet-policy-service agree
  • (when company given) I am making Submissions in the course of work for my employer (or my employer has intellectual property rights in my Submissions by contract or applicable law). I have permission from my employer to make Submissions and enter into this Agreement on behalf of my employer. By signing below, the defined term “You” includes me and my employer.
@dotnet-policy-service agree company="Microsoft"
Contributor License Agreement

Contribution License Agreement

This Contribution License Agreement ( “Agreement” ) is agreed to by the party signing below ( “You” ),
and conveys certain license rights to the .NET Foundation ( “.NET Foundation” ) for Your contributions to
.NET Foundation open source projects. This Agreement is effective as of the latest signature date below.

1. Definitions.

“Code” means the computer software code, whether in human-readable or machine-executable form,
that is delivered by You to .NET Foundation under this Agreement.

“Project” means any of the projects owned or managed by .NET Foundation and offered under a license
approved by the Open Source Initiative (www.opensource.org).

“Submit” is the act of uploading, submitting, transmitting, or distributing code or other content to any
Project, including but not limited to communication on electronic mailing lists, source code control
systems, and issue tracking systems that are managed by, or on behalf of, the Project for the purpose of
discussing and improving that Project, but excluding communication that is conspicuously marked or
otherwise designated in writing by You as “Not a Submission.”

“Submission” means the Code and any other copyrightable material Submitted by You, including any
associated comments and documentation.

2. Your Submission. You must agree to the terms of this Agreement before making a Submission to any
Project. This Agreement covers any and all Submissions that You, now or in the future (except as
described in Section 4 below), Submit to any Project.

3. Originality of Work. You represent that each of Your Submissions is entirely Your
original work. Should You wish to Submit materials that are not Your original work,
You may Submit them separately to the Project if You (a) retain all copyright and
license information that was in the materials as you received them, (b) in the
description accompanying your Submission, include the phrase "Submission
containing materials of a third party:" followed by the names of the third party and any
licenses or other restrictions of which You are aware, and (c) follow any other
instructions in the Project's written guidelines concerning Submissions.

4. Your Employer. References to “employer” in this Agreement include Your employer or anyone else
for whom You are acting in making Your Submission, e.g. as a contractor, vendor, or agent. If Your
Submission is made in the course of Your work for an employer or Your employer has intellectual
property rights in Your Submission by contract or applicable law, You must secure permission from Your
employer to make the Submission before signing this Agreement. In that case, the term “You” in this
Agreement will refer to You and the employer collectively. If You change employers in the future and
desire to Submit additional Submissions for the new employer, then You agree to sign a new Agreement
and secure permission from the new employer before Submitting those Submissions.

5. Licenses.

a. Copyright License. You grant .NET Foundation, and those who receive the Submission directly
or indirectly from .NET Foundation, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable
license in the Submission to reproduce, prepare derivative works of, publicly display, publicly perform,
and distribute the Submission and such derivative works, and to sublicense any or all of the foregoing
rights to third parties.

b. Patent License. You grant .NET Foundation, and those who receive the Submission directly or
indirectly from .NET Foundation, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license
under Your patent claims that are necessarily infringed by the Submission or the combination of the
Submission with the Project to which it was Submitted to make, have made, use, offer to sell, sell and
import or otherwise dispose of the Submission alone or with the Project.

c. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement.
No additional licenses or rights whatsoever (including, without limitation, any implied licenses) are
granted by implication, exhaustion, estoppel or otherwise.

6. Representations and Warranties. You represent that You are legally entitled to grant the above
licenses. You represent that each of Your Submissions is entirely Your original work (except as You may
have disclosed under Section 3 ). You represent that You have secured permission from Your employer to
make the Submission in cases where Your Submission is made in the course of Your work for Your
employer or Your employer has intellectual property rights in Your Submission by contract or applicable
law. If You are signing this Agreement on behalf of Your employer, You represent and warrant that You
have the necessary authority to bind the listed employer to the obligations contained in this Agreement.
You are not expected to provide support for Your Submission, unless You choose to do so. UNLESS
REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, AND EXCEPT FOR THE WARRANTIES
EXPRESSLY STATED IN SECTIONS 3, 4, AND 6 , THE SUBMISSION PROVIDED UNDER THIS AGREEMENT IS
PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY OF
NONINFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.

7. Notice to .NET Foundation. You agree to notify .NET Foundation in writing of any facts or
circumstances of which You later become aware that would make Your representations in this
Agreement inaccurate in any respect.

8. Information about Submissions. You agree that contributions to Projects and information about
contributions may be maintained indefinitely and disclosed publicly, including Your name and other
information that You submit with Your Submission.

9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the State of Washington, and
the parties consent to exclusive jurisdiction and venue in the federal courts sitting in King County,
Washington, unless no federal subject matter jurisdiction exists, in which case the parties consent to
exclusive jurisdiction and venue in the Superior Court of King County, Washington. The parties waive all
defenses of lack of personal jurisdiction and forum non-conveniens.

10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and
supersedes any and all prior agreements, understandings or communications, written or oral, between
the parties relating to the subject matter hereof. This Agreement may be assigned by .NET Foundation.

.NET Foundation dedicates this Contribution License Agreement to the public domain according to the Creative Commons CC0 1.

1 similar comment
@dotnet-policy-service

Copy link
Copy Markdown
Contributor

@iuribrindeiro please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.

@dotnet-policy-service agree [company="{your company}"]

Options:

  • (default - no company specified) I have sole ownership of intellectual property rights to my Submissions and I am not making Submissions in the course of work for my employer.
@dotnet-policy-service agree
  • (when company given) I am making Submissions in the course of work for my employer (or my employer has intellectual property rights in my Submissions by contract or applicable law). I have permission from my employer to make Submissions and enter into this Agreement on behalf of my employer. By signing below, the defined term “You” includes me and my employer.
@dotnet-policy-service agree company="Microsoft"
Contributor License Agreement

Contribution License Agreement

This Contribution License Agreement ( “Agreement” ) is agreed to by the party signing below ( “You” ),
and conveys certain license rights to the .NET Foundation ( “.NET Foundation” ) for Your contributions to
.NET Foundation open source projects. This Agreement is effective as of the latest signature date below.

1. Definitions.

“Code” means the computer software code, whether in human-readable or machine-executable form,
that is delivered by You to .NET Foundation under this Agreement.

“Project” means any of the projects owned or managed by .NET Foundation and offered under a license
approved by the Open Source Initiative (www.opensource.org).

“Submit” is the act of uploading, submitting, transmitting, or distributing code or other content to any
Project, including but not limited to communication on electronic mailing lists, source code control
systems, and issue tracking systems that are managed by, or on behalf of, the Project for the purpose of
discussing and improving that Project, but excluding communication that is conspicuously marked or
otherwise designated in writing by You as “Not a Submission.”

“Submission” means the Code and any other copyrightable material Submitted by You, including any
associated comments and documentation.

2. Your Submission. You must agree to the terms of this Agreement before making a Submission to any
Project. This Agreement covers any and all Submissions that You, now or in the future (except as
described in Section 4 below), Submit to any Project.

3. Originality of Work. You represent that each of Your Submissions is entirely Your
original work. Should You wish to Submit materials that are not Your original work,
You may Submit them separately to the Project if You (a) retain all copyright and
license information that was in the materials as you received them, (b) in the
description accompanying your Submission, include the phrase "Submission
containing materials of a third party:" followed by the names of the third party and any
licenses or other restrictions of which You are aware, and (c) follow any other
instructions in the Project's written guidelines concerning Submissions.

4. Your Employer. References to “employer” in this Agreement include Your employer or anyone else
for whom You are acting in making Your Submission, e.g. as a contractor, vendor, or agent. If Your
Submission is made in the course of Your work for an employer or Your employer has intellectual
property rights in Your Submission by contract or applicable law, You must secure permission from Your
employer to make the Submission before signing this Agreement. In that case, the term “You” in this
Agreement will refer to You and the employer collectively. If You change employers in the future and
desire to Submit additional Submissions for the new employer, then You agree to sign a new Agreement
and secure permission from the new employer before Submitting those Submissions.

5. Licenses.

a. Copyright License. You grant .NET Foundation, and those who receive the Submission directly
or indirectly from .NET Foundation, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable
license in the Submission to reproduce, prepare derivative works of, publicly display, publicly perform,
and distribute the Submission and such derivative works, and to sublicense any or all of the foregoing
rights to third parties.

b. Patent License. You grant .NET Foundation, and those who receive the Submission directly or
indirectly from .NET Foundation, a perpetual, worldwide, non-exclusive, royalty-free, irrevocable license
under Your patent claims that are necessarily infringed by the Submission or the combination of the
Submission with the Project to which it was Submitted to make, have made, use, offer to sell, sell and
import or otherwise dispose of the Submission alone or with the Project.

c. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement.
No additional licenses or rights whatsoever (including, without limitation, any implied licenses) are
granted by implication, exhaustion, estoppel or otherwise.

6. Representations and Warranties. You represent that You are legally entitled to grant the above
licenses. You represent that each of Your Submissions is entirely Your original work (except as You may
have disclosed under Section 3 ). You represent that You have secured permission from Your employer to
make the Submission in cases where Your Submission is made in the course of Your work for Your
employer or Your employer has intellectual property rights in Your Submission by contract or applicable
law. If You are signing this Agreement on behalf of Your employer, You represent and warrant that You
have the necessary authority to bind the listed employer to the obligations contained in this Agreement.
You are not expected to provide support for Your Submission, unless You choose to do so. UNLESS
REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING, AND EXCEPT FOR THE WARRANTIES
EXPRESSLY STATED IN SECTIONS 3, 4, AND 6 , THE SUBMISSION PROVIDED UNDER THIS AGREEMENT IS
PROVIDED WITHOUT WARRANTY OF ANY KIND, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY OF
NONINFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.

7. Notice to .NET Foundation. You agree to notify .NET Foundation in writing of any facts or
circumstances of which You later become aware that would make Your representations in this
Agreement inaccurate in any respect.

8. Information about Submissions. You agree that contributions to Projects and information about
contributions may be maintained indefinitely and disclosed publicly, including Your name and other
information that You submit with Your Submission.

9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the State of Washington, and
the parties consent to exclusive jurisdiction and venue in the federal courts sitting in King County,
Washington, unless no federal subject matter jurisdiction exists, in which case the parties consent to
exclusive jurisdiction and venue in the Superior Court of King County, Washington. The parties waive all
defenses of lack of personal jurisdiction and forum non-conveniens.

10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and
supersedes any and all prior agreements, understandings or communications, written or oral, between
the parties relating to the subject matter hereof. This Agreement may be assigned by .NET Foundation.

.NET Foundation dedicates this Contribution License Agreement to the public domain according to the Creative Commons CC0 1.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds a new RabbitMQ Streams persistent stream provider to Orleans (under src/RabbitMQ/), along with supporting cache/cursor infrastructure, tests, a runnable Aspire-based sample, and documentation updates to surface the new provider in the streaming docs and sample gallery.

Changes:

  • Introduces Microsoft.Orleans.Streaming.RabbitMQ (alpha) provider implementation, including adapter, receiver, producer/consumer, and a custom queue cache/cursor.
  • Adds unit tests for the queue cache and cursor behavior (purging, retry, refresh semantics).
  • Adds an Aspire-hosted RabbitMQ streaming sample plus docs and TOC/package matrix updates.
Show a summary per file
File Description
test/Extensions/RabbitMQ.Tests/RabbitMqQueueCacheTest.cs Adds queue cache purge/pressure tests.
test/Extensions/RabbitMQ.Tests/RabbitMqQueueCacheCursorTest.cs Adds cursor behavior tests (retry/refresh/handshake behavior).
test/Extensions/RabbitMQ.Tests/RabbitMQ.Tests.csproj Introduces a new test project for the RabbitMQ provider.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQStreamSystemProvider.cs Adds StreamSystem creation with retry + separate producer/consumer stream systems.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQProducer.cs Adds RabbitMQ Streams producer wrapper used by the adapter.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQConsumer.cs Adds consumer wrapper, queue creation helper, and message metadata constants.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQConnectionRetryOptions.cs Adds configurable connection retry settings.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQClientOptions.cs Adds provider configuration options (StreamSystemConfig, queue names, etc.).
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Properties/AssemblyInfo.cs Exposes internals to the RabbitMQ test project.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Orleans.Streaming.RabbitMQ.csproj Introduces the new provider package project and dependency on RabbitMQ.Stream.Client.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Configurators/RabbitMQSiloConfigurator.cs Adds silo configuration API (AddRabbitMQStreams, cache/partitioning configuration).
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/RabbitMQBatchContainer.cs Implements an Orleans batch container for serialized RabbitMQ stream messages.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/RabbitMQAdapterReceiverFactory.cs Adds receiver factory wiring instrumentation/monitoring.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/RabbitMQAdapterReceiver.cs Implements IQueueAdapterReceiver for pulling and offset checkpointing.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/RabbitMQAdapterFactory.cs Implements IQueueAdapterFactory with mapper + cache selection.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/RabbitMQAdapter.cs Implements IQueueAdapter for producing/receiving.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/Cache/RabbitMqQueueCacheCursor.cs Implements custom cursor semantics for cache + retry behavior.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/Cache/RabbitMqQueueCacheAdapter.cs Connects cache options to IQueueAdapterCache.
src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/Cache/RabbitMqQueueCache.cs Implements custom in-memory queue cache with purge logic.
samples/Streaming/README.md Updates streaming samples index to include RabbitMQ sample.
samples/Streaming/RabbitMQ/README.md Adds RabbitMQ streaming sample instructions and environment variables.
samples/Streaming/RabbitMQ/RabbitMQ.Silo/StreamGrains.cs Adds producer/consumer grains used by the sample.
samples/Streaming/RabbitMQ/RabbitMQ.Silo/RabbitMQ.Silo.csproj Adds sample silo project referencing the new provider package.
samples/Streaming/RabbitMQ/RabbitMQ.Silo/Program.cs Configures and runs a local silo with RabbitMQ Streams provider.
samples/Streaming/RabbitMQ/RabbitMQ.AppHost/RabbitMQ.AppHost.csproj Adds Aspire AppHost project for orchestrating RabbitMQ + silo.
samples/Streaming/RabbitMQ/RabbitMQ.AppHost/Program.cs Defines RabbitMQ resource and wires env vars into the silo project.
samples/Streaming/RabbitMQ/RabbitMQ.AppHost/enabled_plugins Enables RabbitMQ management + stream plugins for the sample container.
samples/Streaming/Directory.Packages.props Adds sample-scoped package versions (Aspire hosting, MessagePack, provider package).
samples/Samples.slnx Adds RabbitMQ sample projects to the samples solution.
samples/README.md Adds the RabbitMQ Streams sample to the sample catalog table.
samples/gallery.json Adds RabbitMQ Streams sample entry to gallery manifest.
Orleans.slnx Adds the new provider project and test project to the main solution.
NuGet.Config Adds nuget.org package source mapping for RabbitMQ.Stream.Client.
docs/site/src/content/docs/toc.yml Adds RabbitMQ Streams entry to streaming docs TOC.
docs/site/src/content/docs/streaming/stream-providers.md Adds provider matrix entry + configuration section for RabbitMQ Streams.
docs/site/src/content/docs/streaming/snippets/rabbitmq/RabbitMQConfiguration.cs Adds runnable snippet showing silo registration/config.
docs/site/src/content/docs/streaming/snippets/rabbitmq/rabbitmq.csproj Adds snippet project referencing the new provider + Orleans.Server.
docs/site/src/content/docs/streaming/rabbitmq-streaming.md Adds end-user “Stream with RabbitMQ” documentation page.
docs/site/src/content/docs/streaming/delivery-semantics.md Updates rewindable providers list to include RabbitMQ Streams.
docs/site/src/content/docs/resources/nuget-packages.md Adds the RabbitMQ streaming package to the NuGet package list.
docs/Docs.slnx Adds RabbitMQ snippet project to docs solution.
Directory.Packages.props Adds RabbitMQ.Stream.Client version and Aspire.Hosting.RabbitMQ version updates.

Review details

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

  • Files reviewed: 42/42 changed files
  • Comments generated: 14
  • Review effort level: Lite

Comment thread src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQConsumer.cs Outdated
Comment thread src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQConsumer.cs Outdated
Comment thread src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/RabbitMQAdapterReceiver.cs Outdated
Comment thread src/RabbitMQ/Orleans.Streaming.RabbitMQ/Adapters/RabbitMQAdapterReceiver.cs Outdated
Comment thread src/RabbitMQ/Orleans.Streaming.RabbitMQ/RabbitMQ/RabbitMQClientOptions.cs Outdated
Comment thread NuGet.Config
Comment thread src/RabbitMQ/Orleans.Streaming.RabbitMQ/Configurators/RabbitMQSiloConfigurator.cs Outdated
Comment thread test/Extensions/RabbitMQ.Tests/RabbitMqQueueCacheCursorTest.cs Outdated
@ReubenBond
ReubenBond force-pushed the rabbitmq-stream branch 2 times, most recently from 652e221 to b46f024 Compare August 22, 2026 15:38
@iuribrindeiro

Copy link
Copy Markdown
Author

I am so happy to see that someone had the time to continue working on this <3

@ReubenBond
ReubenBond force-pushed the rabbitmq-stream branch 2 times, most recently from a113332 to c09f2c0 Compare August 26, 2026 10:45
iuribrindeiro and others added 14 commits August 29, 2026 02:10
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Remove temporary sample projects and replace Polly with Orleans retry helpers. Keep provider and tests registered in Orleans.slnx.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Document provider configuration and delivery semantics, and add an Aspire-orchestrated RabbitMQ Streams sample.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: f86d5c5c-553b-44e0-98dd-67870e0116fc
Retry failed deliveries within the RabbitMQ cursor and remove unrelated streaming runtime, Event Hubs, and public API changes.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>

Copilot-Session: f86d5c5c-553b-44e0-98dd-67870e0116fc
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants