Xtensible.Aspire.Hosting.Cassandra
1.0.0
dotnet add package Xtensible.Aspire.Hosting.Cassandra --version 1.0.0
NuGet\Install-Package Xtensible.Aspire.Hosting.Cassandra -Version 1.0.0
<PackageReference Include="Xtensible.Aspire.Hosting.Cassandra" Version="1.0.0" />
<PackageVersion Include="Xtensible.Aspire.Hosting.Cassandra" Version="1.0.0" />
<PackageReference Include="Xtensible.Aspire.Hosting.Cassandra" />
paket add Xtensible.Aspire.Hosting.Cassandra --version 1.0.0
#r "nuget: Xtensible.Aspire.Hosting.Cassandra, 1.0.0"
#addin nuget:?package=Xtensible.Aspire.Hosting.Cassandra&version=1.0.0
#tool nuget:?package=Xtensible.Aspire.Hosting.Cassandra&version=1.0.0
Xtensible.Aspire.Hosting.Cassandra
This project provides Cassandra and Scylla support for .NET Aspire. It allows you to easily add and configure Cassandra or Scylla databases to your Aspire application using the AddCassandra
and AddScylla
extension methods.
Purpose
The purpose of this library is to simplify the integration of Cassandra and Scylla databases into .NET Aspire applications. It provides a set of extension methods and options that allow you to configure your Cassandra or Scylla resources with minimal code. It also provides healthchecks.
Usage
Adding Cassandra to your Aspire AppHost
To add a Cassandra database to your Aspire application, you can use the AddCassandra
extension method in your AppHost project.
// Program.cs (AppHost)
using Xtensible.Aspire.Hosting.Cassandra;
IDistributedApplicationBuilder builder = DistributedApplication.CreateBuilder(args);
IResourceBuilder<CassandraResource> cassandra =
builder.AddCassandra("cassandra", new()
{
OnResourceReadyAsync = async (r, c) =>
{
// optionally run some code when the resource is ready
Console.WriteLine($"Cassandra resource {r.Name} is ready. {await r.ConnectionStringExpression.GetValueAsync(c)}");
}
}).PublishAsConnectionString();
builder.Build().Run();
This code adds a Cassandra resource named "cassandra" to your application. It also configures the port to 9042 and publishes the connection string as a service.
Adding Scylla to your Aspire AppHost To add a Scylla database, which is a Cassandra-compatible database, you can use the AddScylla extension method. This uses the scylladb/scylla docker image by default
// Program.cs (AppHost)
using Xtensible.Aspire.Hosting.Cassandra;
IDistributedApplicationBuilder builder = DistributedApplication.CreateBuilder(args);
IResourceBuilder<CassandraResource> scylla =
builder.AddScylla("scylla").PublishAsConnectionString();
builder.Build().Run();
This code adds a Scylla resource named "scylla" to your application.
Configuring Cassandra
You can configure the Cassandra resource using the CassandraBuilderOptions class. This class allows you to set the username, password, port, and scheme for your Cassandra database.
builder.AddCassandra("cassandra", new CassandraBuilderOptions("myuser", "mypassword")
{
Port = 9042,
Scheme = "tcp"
});
Health Checks
This library automatically adds health checks for your Cassandra resources. These health checks can be used to monitor the health of your Cassandra databases and ensure that they are running and able to receive commands. Health Check is available as a separate Nuget package, so that you can use it in your Asp.net health checks in production.
Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue.
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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- Aspire.Hosting (>= 9.1.0)
- Xtensible.Cassandra.Healthchecks (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 221 | 3/14/2025 |
Initial release