-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing EventHubs provider for Aspire / IConfiguration #9244
Comments
Look at, I had a similar issue #9241 |
If you look into the source, you'll note there is a However, for EventHubs Streaming (and as linked Storage Queues Streaming) there is no matching provider. https://github.com/dotnet/orleans/blob/main/src/Azure/Orleans.Streaming.EventHubs/Hosting/SiloBuilderExtensions.cs It is my understanding that the provider attributes allow these classes to initialize the correct provider by utlizing the In your case, adding the package allows the provider to fire correctly, but with EventHubs there is no such provider. Please correct me if I am wrong! |
I did start by listing which packages I have - SiloBuilderExtensions.cs is a very different shape of class from the Redis Cluster. |
I've updated the original post with the details. |
When configuring EventHubs via Aspire for Streaming, the Orleans silo does not properly configure the streaming provider.
This issue is similar to #9075
The following error is received upon startup:
According to what I can find, there is a set of missing
Provider
classes to support initializing the provider from configuration. Implementation would be similar to this PR for Storage Queue Streaming.Pull Request: #8929
From the original support thread:
Packages:
AppHost
Silo
I also tried manually configuring the EventHubs, but did not spend too much time on this (yet)
The text was updated successfully, but these errors were encountered: