Skip to content
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

Microsoft.Extensions.Configuration support for Cosmos Clustering Provider #9204

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Oct 26, 2024

  1. Configuration menu
    Copy the full SHA
    a61af0b View commit details
    Browse the repository at this point in the history
  2. Add InternalsVisibleTo attribute for Tester.AzureUtils

    Added a `using` directive for `System.Runtime.CompilerServices` and
    an assembly attribute `[assembly: InternalsVisibleTo("Tester.AzureUtils")]`
    to make internal types visible to the `Tester.AzureUtils` assembly.
    OmnipotentOwl committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    983ef18 View commit details
    Browse the repository at this point in the history
  3. Add CosmosClusteringProviderBuilder for Orleans clustering

    Introduce CosmosClusteringProviderBuilder class implementing IProviderBuilder<ISiloBuilder> and IProviderBuilder<IClientBuilder> interfaces. Register the class as a provider for both "Silo" and "Client" roles. Implement Configure methods to set up Cosmos DB clustering options and client configuration. Import necessary namespaces to support the new functionality.
    
    This adds support for using the Cosmos DB Clustering Provider from Orleans IConfiguration setup.
    OmnipotentOwl committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    bf98daf View commit details
    Browse the repository at this point in the history