diff --git a/docs/src/main/paradox/astra.md b/docs/src/main/paradox/astra.md new file mode 100644 index 000000000..7a4bedeb2 --- /dev/null +++ b/docs/src/main/paradox/astra.md @@ -0,0 +1,23 @@ +# DataStax Astra + +You can spin up a free Apache Cassandra cluster in the cloud using [DataStax +Astra](https://www.datastax.com/products/datastax-astra). To use a Cassandra-as-a-Service cluster as Akka persistence, +specify your secure connect bundle and credentials in your configuration instead of the contact points: + +``` +datastax-java-driver { + basic { + session-keyspace = my_keyspace + cloud { + secure-connect-bundle = /path/to/secure-connect-database_name.zip + } + } + advanced { + auth-provider { + class = PlainTextAuthProvider + username = + password = + } + } +} +``` diff --git a/docs/src/main/paradox/index.md b/docs/src/main/paradox/index.md index b9d1d14dc..0abce4cec 100644 --- a/docs/src/main/paradox/index.md +++ b/docs/src/main/paradox/index.md @@ -17,6 +17,7 @@ The Akka Persistence Cassandra plugin allows for using [Apache Cassandra](https: * [Health check](healthcheck.md) * [Configuration](configuration.md) * [CosmosDB](cosmosdb.md) +* [DataStax Astra](astra.md) * [ScyllaDB](scylladb.md) * [Migrations](migrations.md)