Skip to content

Commit 7ae4271

Browse files
committed
Prepare 3.2.0 release
1 parent af9ee4b commit 7ae4271

6 files changed

+38
-19
lines changed

CHANGES.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
3.2.0
2+
* Spark 3.2.x support (SPARKC-670)
3+
* Fix: Cassandra Direct Join doesn't quote keyspace and table names (SPARKC-667)
4+
* Fix: The connector can't find a codec for BLOB <-> java.nio.HeapByteBuffer (SPARKC-673)
5+
16
3.1.1
27
* Fix: Cassandra Direct Join doesn't quote keyspace and table names (SPARKC-667)
8+
* Fix: The connector can't find a codec for BLOB <-> java.nio.HeapByteBuffer (SPARKC-673)
39

410
3.1.0
511
* Updated Spark to 3.1.1 and commons-lang to 3.10 (SPARKC-626, SPARKC-646)
@@ -8,6 +14,7 @@
814

915
3.0.2
1016
* Fix: Cassandra Direct Join doesn't quote keyspace and table names (SPARKC-667)
17+
* Fix: The connector can't find a codec for BLOB <-> java.nio.HeapByteBuffer (SPARKC-673)
1118

1219
3.0.1
1320
* Fix: repeated metadata refresh with the Spark connector (SPARKC-633)

README.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
## Quick Links
66

7-
| What | Where |
8-
| ---------- | ----- |
9-
| Community | Chat with us at [Datastax and Cassandra Q&A](https://community.datastax.com/index.html) |
10-
| Scala Docs | Most Recent Release (3.1.0): [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.1.0/connector/com/datastax/spark/connector/index.html), [Spark-Cassandra-Connector-Driver](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.1.0/driver/com/datastax/spark/connector/index.html)|
11-
| Latest Production Release | [3.1.0](https://search.maven.org/artifact/com.datastax.spark/spark-cassandra-connector_2.12/3.1.0/jar) |
7+
| What | Where |
8+
| ---------- |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
9+
| 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) |
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.1 ([see table below](#version-compatibility))
22+
- Compatible with Apache Spark 1.0 through 3.2 ([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
@@ -44,9 +44,11 @@ named "bX.Y" where X.Y is the major+minor version; for example the "b1.6" branch
4444
corresponds to the 1.6 release. The "master" branch will normally contain
4545
development for the next connector release in progress.
4646

47-
Currently the following branches are actively supported: 3.1.x ([master](https://github.com/datastax/spark-cassandra-connector/tree/master)),
48-
3.0.x ([b3.0](https://github.com/datastax/spark-cassandra-connector/tree/b3.0)) and 2.5.x
49-
([b2.5](https://github.com/datastax/spark-cassandra-connector/tree/b2.5)).
47+
Currently, the following branches are actively supported:
48+
3.2.x ([master](https://github.com/datastax/spark-cassandra-connector/tree/master)),
49+
3.1.x ([b3.1](https://github.com/datastax/spark-cassandra-connector/tree/b3.1)),
50+
3.0.x ([b3.0](https://github.com/datastax/spark-cassandra-connector/tree/b3.0)) and
51+
2.5.x ([b2.5](https://github.com/datastax/spark-cassandra-connector/tree/b2.5)).
5052

5153
| Connector | Spark | Cassandra | Cassandra Java Driver | Minimum Java Version | Supported Scala Versions |
5254
| --------- | ------------- | --------- | --------------------- | -------------------- | ----------------------- |
@@ -71,6 +73,9 @@ Currently the following branches are actively supported: 3.1.x ([master](https:/
7173
## Hosted API Docs
7274
API documentation for the Scala and Java interfaces are available online:
7375

76+
### 3.2.0
77+
* [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.2.0/connector/com/datastax/spark/connector/index.html)
78+
7479
### 3.1.0
7580
* [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/3.1.0/connector/com/datastax/spark/connector/index.html)
7681

@@ -90,7 +95,7 @@ This project is available on the Maven Central Repository.
9095
For SBT to download the connector binaries, sources and javadoc, put this in your project
9196
SBT config:
9297

93-
libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "3.1.0"
98+
libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "3.2.0"
9499

95100
* The default Scala version for Spark 3.0+ is 2.12 please choose the appropriate build. See the
96101
[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.1.0"
18+
libraryDependencies += "com.datastax.spark" % "spark-cassandra-connector_2.12" % "3.2.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.1.0
25-
$SPARK_HOME/bin/spark-submit --packages com.datastax.spark:spark-cassandra-connector_2.12:3.1.0
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
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.1.0
45+
--packages com.datastax.spark:spark-cassandra-connector_2.12:3.2.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.1.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.2.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.1.0 \
17+
--packages com.datastax.spark:spark-cassandra-connector_2.12:3.2.0 \
1818
--conf spark.sql.extensions=com.datastax.spark.connector.CassandraSparkExtensions
1919
```
2020

doc/developers.md

+10-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 => master
34+
b2.5 => b3.0 => b3.1 => 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 master.
38+
b2.5 feature branch to b3.0 feature branch. Repeat for b3.1 and master.
3939

4040
Example for imaginary SPARKC-9999.
4141

@@ -62,10 +62,17 @@ git merge SPARKC-9999-b2.5
6262
# Resolve conflict, if any
6363
# Push the new feature branch:
6464
git push origin SPARKC-9999-b3.0
65+
66+
# Forward merge on the next version:
67+
git checkout -b SPARKC-9999-b3.1 datastax/b3.1
68+
git merge SPARKC-9999-b3.0
69+
# Resolve conflict, if any
70+
# Push the new feature branch:
71+
git push origin SPARKC-9999-b3.1
6572

6673
# Forward merge on the next version:
6774
git checkout -b SPARKC-9999-master datastax/master
68-
git merge SPARKC-9999-b3.0
75+
git merge SPARKC-9999-b3.1
6976
# Resolve conflict, if any
7077
# Push the new feature branch:
7178
git push origin SPARKC-9999-master

0 commit comments

Comments
 (0)