Orleans.Clustering.Minio
8.2.0.2
dotnet add package Orleans.Clustering.Minio --version 8.2.0.2
NuGet\Install-Package Orleans.Clustering.Minio -Version 8.2.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Orleans.Clustering.Minio" Version="8.2.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Orleans.Clustering.Minio --version 8.2.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Orleans.Clustering.Minio, 8.2.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Orleans.Clustering.Minio as a Cake Addin #addin nuget:?package=Orleans.Clustering.Minio&version=8.2.0.2 // Install Orleans.Clustering.Minio as a Cake Tool #tool nuget:?package=Orleans.Clustering.Minio&version=8.2.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Orleans Minio Providers
Orleans is a framework that provides a straight-forward approach to building distributed high-scale computing applications, without the need to learn and apply complex concurrency or other scaling patterns.
Orleans.Minio
is a package that use Minio as a backend for Orleans providers like Cluster Membership, Grain State storage and Reminders.
Installation
Nuget Packages are provided:
- Orleans.Persistence.Minio
- Orleans.Clustering.Minio
Coming soon
- Orleans.Reminder.Minio
Silo
IHostBuilder builder = Host.CreateDefaultBuilder(args)
.UseOrleans(silo =>
{
silo.Configure<ClusterOptions>(options =>
{
options.ClusterId = "DEV";
options.ServiceId = "DEV";
});
silo.UseMinioClustering(option =>
{
option.Endpoint = "s3.minio.example";
option.AccessKey = "access key";
option.SecretKey = "secret key";
});
silo.AddMinioGrainStorage("test", options =>
{
option.Endpoint = "s3.minio.example";
option.AccessKey = "access key";
option.SecretKey = "secret key";
});
silo.ConfigureLogging(logging => logging.AddConsole());
silo.ConfigureEndpoints(
siloPort: 11111,
gatewayPort: 30001,
advertisedIP: IPAddress.Parse("192.168.68.41"),
listenOnAnyHostAddress: true
);
silo.Configure<ClusterMembershipOptions>(options =>
{
options.EnableIndirectProbes = true;
options.UseLivenessGossip = true;
});
})
.UseConsoleLifetime();
using IHost host = builder.Build();
await host.RunAsync();
Client
var builder = WebApplication.CreateBuilder(args);
builder.Host.UseOrleansClient(client =>
{
client.Configure<ClusterOptions>(options =>
{
options.ClusterId = "DEV";
options.ServiceId = "DEV";
});
client.UseMinioClustering(option =>
{
option.Endpoint = "s3.minio.example";
option.AccessKey = "access key";
option.SecretKey = "secret key";
});
});
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.Orleans.Runtime (>= 8.2.0)
- Minio (>= 6.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.