| tag | c4e86c87dc17b7cfd4ed00640223709dca87312d | |
|---|---|---|
| tagger | Brandon Williams <brandonwilliams@apache.org> | Fri Nov 21 09:25:20 2025 -0600 |
| object | 592341ce460a4ace3b62ae3ae3d4d11ea4385856 |
Apache Cassandra Analytics 0.2.0 release
| commit | 592341ce460a4ace3b62ae3ae3d4d11ea4385856 | [log] [tgz] |
|---|---|---|
| author | Bernardo Botella <bbotella@users.noreply.github.com> | Mon Nov 17 09:36:40 2025 -0800 |
| committer | GitHub <noreply@github.com> | Mon Nov 17 09:36:40 2025 -0800 |
| tree | bb60fdb8b948ee360014bf223b5cfdf3164e62b8 | |
| parent | b69a4ac80b4a2c57e358ab99f5d33a8fab5c69c2 [diff] |
ninja: Remove not wanted jar from src artifacts (#158) * Remove not wanted jar from src artifacts * Move the documentation to a better section * Update readme
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()
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.
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.
Contributions are welcome!
Please join us on #cassandra-dev in ASF Slack.
Issues are tracked in JIRA.