Apache cassandra

Clone this repo:
  1. c877942 CASSANALYTICS-167: Regenerate bloom filters for CQLSSTableWriter by Lukasz Antoniak · 2 weeks ago trunk
  2. a4aa927 CASSANALYTICS-171: Avoid Spark 4 partitioning warnings during reads (#213) by Liu Cao · 9 days ago
  3. 87c553c CASSANALYTICS-155: Add IAM credential support for S3 storage transport by Jon Haddad · 13 days ago
  4. 1fc500d CASSANALYTICS-34: Spark 4.0 Support (#163) by Francisco Guerrero · 2 weeks ago
  5. 66d3ca7 [INFRA] Set up default rulesets for default and release branches (#207) by The Apache Software Foundation · 2 weeks ago

Cassandra Analytics

Cassandra Spark Bulk Reader

The open-source repository for the Cassandra Spark Bulk Reader. This library allows integration between Cassandra and Spark job, allowing users to run arbitrary Spark jobs against a Cassandra cluster securely and consistently.

This project contains the necessary open-source implementations to connect to a Cassandra cluster and read the data into Spark.

For example usage, see the example repository; sample steps:

import org.apache.cassandra.spark.sparksql.CassandraDataSource
import org.apache.spark.sql.SparkSession

val sparkSession = SparkSession.builder.getOrCreate()
val df = sparkSession.read.format("org.apache.cassandra.spark.sparksql.CassandraDataSource")
                          .option("sidecar_contact_points", "localhost,localhost2,localhost3")
                          .option("keyspace", "sbr_tests")
                          .option("table", "basic_test")
                          .option("DC", "datacenter1")
                          .option("createSnapshot", true)
                          .option("numCores", 4)
                          .load()

Cassandra Spark Bulk Writer

The Cassandra Spark Bulk Writer allows for high-speed data ingest to Cassandra clusters running Cassandra 4.x and 5.0.

Developers interested in contributing to the Analytics library, please see the DEV-README.

Getting Started

For example usage, see the example repository. This example covers both setting up Cassandra 4.0, Apache Sidecar, and running a Spark Bulk Reader and Spark Bulk Writer job.

Contributing

Contributions are welcome!

Please join us on #cassandra-dev in ASF Slack.

Issues are tracked in JIRA.