Skip to content

Commit 7f554ca

Browse files
committed
Prepare 3.3.0 release
1 parent 9eb9e81 commit 7f554ca

6 files changed

+27
-17
lines changed

CHANGES.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
3.3.0
22
* Spark 3.3.x support (SPARKC-693)
3+
* Materialized View read support fix (SPARKC-653)
4+
* Fix Direct Join projection collapse (SPARKC-695)
5+
* Fix mixed case column names in Direct Join (SPARKC-682)
6+
37
3.2.0
48
* Spark 3.2.x support (SPARKC-670)
59
* Fix: Cassandra Direct Join doesn't quote keyspace and table names (SPARKC-667)

README.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
| What | Where |
88
| ---------- |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
99
| Community | Chat with us at [Datastax and Cassandra Q&A](https://community.datastax.com/index.html) |
10-
| Scala Docs | Most Recent Release (3.2.0): [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.2.0/connector/com/datastax/spark/connector/index.html), [Spark-Cassandra-Connector-Driver](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.2.0/driver/com/datastax/spark/connector/index.html) |
11-
| Latest Production Release | [3.2.0](https://search.maven.org/artifact/com.datastax.spark/spark-cassandra-connector_2.12/3.2.0/jar) |
10+
| Scala Docs | Most Recent Release (3.3.0): [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.3.0/connector/com/datastax/spark/connector/index.html), [Spark-Cassandra-Connector-Driver](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.3.0/driver/com/datastax/spark/connector/index.html) |
11+
| Latest Production Release | [3.3.0](https://search.maven.org/artifact/com.datastax.spark/spark-cassandra-connector_2.12/3.3.0/jar) |
1212

1313
## Features
1414

@@ -19,7 +19,7 @@ Spark RDDs and Datasets/DataFrames to Cassandra tables, and execute arbitrary CQ
1919
in your Spark applications.
2020

2121
- Compatible with Apache Cassandra version 2.1 or higher (see table below)
22-
- Compatible with Apache Spark 1.0 through 3.2 ([see table below](#version-compatibility))
22+
- Compatible with Apache Spark 1.0 through 3.3 ([see table below](#version-compatibility))
2323
- Compatible with Scala 2.11 and 2.12
2424
- Exposes Cassandra tables as Spark RDDs and Datasets/DataFrames
2525
- Maps table rows to CassandraRow objects or tuples
@@ -45,14 +45,15 @@ corresponds to the 1.6 release. The "master" branch will normally contain
4545
development for the next connector release in progress.
4646

4747
Currently, the following branches are actively supported:
48-
3.2.x ([master](https://github.com/datastax/spark-cassandra-connector/tree/master)),
48+
3.3.x ([master](https://github.com/datastax/spark-cassandra-connector/tree/master)),
49+
3.2.x ([b3.2](https://github.com/datastax/spark-cassandra-connector/tree/b3.2)),
4950
3.1.x ([b3.1](https://github.com/datastax/spark-cassandra-connector/tree/b3.1)),
5051
3.0.x ([b3.0](https://github.com/datastax/spark-cassandra-connector/tree/b3.0)) and
5152
2.5.x ([b2.5](https://github.com/datastax/spark-cassandra-connector/tree/b2.5)).
5253

53-
| Connector | Spark | Cassandra | Cassandra Java Driver | Minimum Java Version | Supported Scala Versions |
54-
| --------- | ------------- | --------- | --------------------- | -------------------- | ----------------------- |
55-
| 3.3 | 3.3 | 2.1.5*, 2.2, 3.x, 4.0 | 4.13 | 8 | 2.12 |
54+
| Connector | Spark | Cassandra | Cassandra Java Driver | Minimum Java Version | Supported Scala Versions |
55+
|-----------|---------------|-----------------------| --------------------- | -------------------- | ----------------------- |
56+
| 3.3 | 3.3 | 2.1.5*, 2.2, 3.x, 4.x | 4.13 | 8 | 2.12 |
5657
| 3.2 | 3.2 | 2.1.5*, 2.2, 3.x, 4.0 | 4.13 | 8 | 2.12 |
5758
| 3.1 | 3.1 | 2.1.5*, 2.2, 3.x, 4.0 | 4.12 | 8 | 2.12 |
5859
| 3.0 | 3.0 | 2.1.5*, 2.2, 3.x, 4.0 | 4.12 | 8 | 2.12 |
@@ -74,6 +75,9 @@ Currently, the following branches are actively supported:
7475
## Hosted API Docs
7576
API documentation for the Scala and Java interfaces are available online:
7677

78+
### 3.3.0
79+
* [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.3.0/connector/com/datastax/spark/connector/index.html)
80+
7781
### 3.2.0
7882
* [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.2.0/connector/com/datastax/spark/connector/index.html)
7983

@@ -96,7 +100,7 @@ This project is available on the Maven Central Repository.
96100
For SBT to download the connector binaries, sources and javadoc, put this in your project
97101
SBT config:
98102

99-
libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "3.2.0"
103+
libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "3.3.0"
100104

101105
* The default Scala version for Spark 3.0+ is 2.12 please choose the appropriate build. See the
102106
[FAQ](doc/FAQ.md) for more information.

doc/0_quick_start.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ Configure a new Scala project with the Apache Spark and dependency.
1515

1616
The dependencies are easily retrieved via Maven Central
1717

18-
libraryDependencies += "com.datastax.spark" % "spark-cassandra-connector_2.12" % "3.2.0"
18+
libraryDependencies += "com.datastax.spark" % "spark-cassandra-connector_2.12" % "3.3.0"
1919

2020
The spark-packages libraries can also be used with spark-submit and spark shell, these
2121
commands will place the connector and all of its dependencies on the path of the
2222
Spark Driver and all Spark Executors.
2323

24-
$SPARK_HOME/bin/spark-shell --packages com.datastax.spark:spark-cassandra-connector_2.12:3.2.0
25-
$SPARK_HOME/bin/spark-submit --packages com.datastax.spark:spark-cassandra-connector_2.12:3.2.0
24+
$SPARK_HOME/bin/spark-shell --packages com.datastax.spark:spark-cassandra-connector_2.12:3.3.0
25+
$SPARK_HOME/bin/spark-submit --packages com.datastax.spark:spark-cassandra-connector_2.12:3.3.0
2626

2727
For the list of available versions, see:
2828
- https://repo1.maven.org/maven2/com/datastax/spark/spark-cassandra-connector_2.12/
@@ -42,7 +42,7 @@ and *all* of its dependencies on the Spark Class PathTo configure
4242
the default Spark Configuration pass key value pairs with `--conf`
4343

4444
$SPARK_HOME/bin/spark-shell --conf spark.cassandra.connection.host=127.0.0.1 \
45-
--packages com.datastax.spark:spark-cassandra-connector_2.12:3.2.0
45+
--packages com.datastax.spark:spark-cassandra-connector_2.12:3.3.0
4646
--conf spark.sql.extensions=com.datastax.spark.connector.CassandraSparkExtensions
4747

4848
This command would set the Spark Cassandra Connector parameter

doc/13_spark_shell.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Find additional versions at [Spark Packages](https://repo1.maven.org/maven2/com/
1818
```bash
1919
cd spark/install/dir
2020
#Include the --master if you want to run against a spark cluster and not local mode
21-
./bin/spark-shell [--master sparkMasterAddress] --jars yourAssemblyJar --packages com.datastax.spark:spark-cassandra-connector_2.12:3.2.0 --conf spark.cassandra.connection.host=yourCassandraClusterIp
21+
./bin/spark-shell [--master sparkMasterAddress] --jars yourAssemblyJar --packages com.datastax.spark:spark-cassandra-connector_2.12:3.3.0 --conf spark.cassandra.connection.host=yourCassandraClusterIp
2222
```
2323

2424
By default spark will log everything to the console and this may be a bit of an overload. To change this copy and modify the `log4j.properties` template file

doc/15_python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ shell similarly to how the spark shell is started. The preferred method is now t
1414

1515
```bash
1616
./bin/pyspark \
17-
--packages com.datastax.spark:spark-cassandra-connector_2.12:3.2.0 \
17+
--packages com.datastax.spark:spark-cassandra-connector_2.12:3.3.0 \
1818
--conf spark.sql.extensions=com.datastax.spark.connector.CassandraSparkExtensions
1919
```
2020

doc/developers.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ Cassandra and Spark nodes and are the core of our test coverage.
3131

3232
### Merge Path
3333

34-
b2.5 => b3.0 => b3.1 => master
34+
b2.5 => b3.0 => b3.1 => b3.2 => master
3535

3636
New features can be considered for 2.5 as long as they do not break apis.
3737
Once a feature is ready for b2.5, create a feature branch for b3.0 and merge
38-
b2.5 feature branch to b3.0 feature branch. Repeat for b3.1 and master.
38+
b2.5 feature branch to b3.0 feature branch. Repeat for b3.1, b3.2 and master.
3939

4040
Example for imaginary SPARKC-9999.
4141

@@ -69,10 +69,12 @@ git merge SPARKC-9999-b3.0
6969
# Resolve conflict, if any
7070
# Push the new feature branch:
7171
git push origin SPARKC-9999-b3.1
72+
73+
# Repeat for b3.2
7274

7375
# Forward merge on the next version:
7476
git checkout -b SPARKC-9999-master datastax/master
75-
git merge SPARKC-9999-b3.1
77+
git merge SPARKC-9999-b3.2
7678
# Resolve conflict, if any
7779
# Push the new feature branch:
7880
git push origin SPARKC-9999-master

0 commit comments

Comments
 (0)