Apache cassandra

Clone this repo:
  1. 34c6c38 CASSANALYTICS-124: Commitlog reading not progressing in CDC due to incorrect CommitLogReader.isFullyRead (#176) by Jyothsna konisa · 2 days ago trunk
  2. f7f9f0c CASSANALYTICS-125: Incorrect hash code calculation in PartitionUpdateWrapper.Digest (#177) by Jyothsna konisa · 5 days ago
  3. e5bfe22 CASSANALYTICS-121: Assign data file start offset based on BTI index by Lukasz Antoniak · 3 weeks ago
  4. c3e31ea CASSANALYTICS-120: Quote identifiers option must be set to true if ttl has mixed case column name (#172) by Saranya Krishnakumar · 14 days ago
  5. cb74f9f CASSANALYTICS-6: User documentation by Lukasz Antoniak · 4 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 3.0 and 4.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.