Description
Cassandra is a free and open source, distributed NoSQL database management system. It is designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure.Examples
Dependency:
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>cassandra</artifactId>
<version>1.20.0</version>
<scope>test</scope>
</dependency>
Usage:
var cassandra = new CassandraContainer<>(DockerImageName.parse("cassandra:3.11.2"));
cassandra.start();
Dependency:
go get github.com/testcontainers/testcontainers-go/modules/cassandra
Usage:
cassandraContainer, err := cassandra.Run(ctx, "cassandra:4.1.3")
Dependency:
npm install @testcontainers/cassandra --save-dev
Usage:
const container = await new CassandraContainer("cassandra:5.0.2").start();