DataStax Astra

You can spin up a free Apache Cassandra cluster in the cloud using 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 = <user name> 
      password = <password>
    }
  }
}
Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.