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
                    
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="Xtensible.Aspire.Hosting.Cassandra" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Xtensible.Aspire.Hosting.Cassandra" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Xtensible.Aspire.Hosting.Cassandra" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Xtensible.Aspire.Hosting.Cassandra --version 1.0.0
                    
#r "nuget: Xtensible.Aspire.Hosting.Cassandra, 1.0.0"
                    
#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.
#addin nuget:?package=Xtensible.Aspire.Hosting.Cassandra&version=1.0.0
                    
Install Xtensible.Aspire.Hosting.Cassandra as a Cake Addin
#tool nuget:?package=Xtensible.Aspire.Hosting.Cassandra&version=1.0.0
                    
Install Xtensible.Aspire.Hosting.Cassandra as a Cake Tool

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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