Skip to content

Commit c35c01d

Browse files
Add Doc links for 2.4.2 Release
1 parent dc5e651 commit c35c01d

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| ---------- | ----- |
77
| Packages | [Spark Cassandra Connector Spark Packages Website](https://spark-packages.org/package/datastax/spark-cassandra-connector) |
88
| Community | Chat with us at [DataStax Academy's #spark-connector Slack channel](#slack) |
9-
| Scala Docs | Most Recent Release (2.4.0): [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.0/spark-cassandra-connector/), [Embedded-Cassandra](https://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.0/spark-cassandra-connector-embedded/) |
9+
| Scala Docs | Most Recent Release (2.4.2): [Spark-Cassandra-Connector](https://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.2/spark-cassandra-connector/), [Embedded-Cassandra](https://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.2/spark-cassandra-connector-embedded/) |
1010

1111
## Features
1212

@@ -17,7 +17,7 @@ execute arbitrary CQL queries in your Spark applications.
1717

1818
- Compatible with Apache Cassandra version 2.0 or higher (see table below)
1919
- Compatible with Apache Spark 1.0 through 2.0 (see table below)
20-
- Compatible with Scala 2.10 and 2.11
20+
- Compatible with Scala 2.11 and 2.12
2121
- Exposes Cassandra tables as Spark RDDs
2222
- Maps table rows to CassandraRow objects or tuples
2323
- Offers customizable object mapper for mapping rows to objects of user-defined classes
@@ -42,6 +42,7 @@ development for the next connector release in progress.
4242

4343
| Connector | Spark | Cassandra | Cassandra Java Driver | Minimum Java Version | Supported Scala Versions |
4444
| --------- | ------------- | --------- | --------------------- | -------------------- | ----------------------- |
45+
| 2.4.2 | 2.4 | 2.1.5*, 2.2, 3.0 | 3.0 | 8 | 2.11, 2.12
4546
| 2.4 | 2.4 | 2.1.5*, 2.2, 3.0 | 3.0 | 8 | 2.11 |
4647
| 2.3 | 2.3 | 2.1.5*, 2.2, 3.0 | 3.0 | 8 | 2.11 |
4748
| 2.0 | 2.0, 2.1, 2.2 | 2.1.5*, 2.2, 3.0 | 3.0 | 8 | 2.10, 2.11 |
@@ -57,9 +58,9 @@ development for the next connector release in progress.
5758

5859
## Hosted API Docs
5960
API documentation for the Scala and Java interfaces are available online:
60-
### 2.4.0
61-
* [Spark-Cassandra-Connector](http://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.0/spark-cassandra-connector/)
62-
* [Embedded-Cassandra](http://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.0/spark-cassandra-connector-embedded/)
61+
### 2.4.2
62+
* [Spark-Cassandra-Connector](http://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.2/spark-cassandra-connector/)
63+
* [Embedded-Cassandra](http://datastax.github.io/spark-cassandra-connector/ApiDocs/2.4.2/spark-cassandra-connector-embedded/)
6364

6465
### 2.3.2
6566
* [Spark-Cassandra-Connector](http://datastax.github.io/spark-cassandra-connector/ApiDocs/2.3.2/spark-cassandra-connector/)
@@ -101,7 +102,7 @@ This project has also been published to the Maven Central Repository.
101102
For SBT to download the connector binaries, sources and javadoc, put this in your project
102103
SBT config:
103104

104-
libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "2.4.0"
105+
libraryDependencies += "com.datastax.spark" %% "spark-cassandra-connector" % "2.4.2"
105106

106107
* The default Scala version for Spark 2.0+ is 2.11 please choose the appropriate build. See the
107108
[FAQ](doc/FAQ.md) for more information

doc/0_quick_start.md

Lines changed: 4 additions & 4 deletions
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.4.1-s_2.11"
18+
libraryDependencies += "com.datastax.spark" % "spark-cassandra-connector" % "2.4.2-s_2.11"
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.11:2.4.1
25-
$SPARK_HOME/bin/spark-submit --packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.1
24+
$SPARK_HOME/bin/spark-shell --packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.2
25+
$SPARK_HOME/bin/spark-submit --packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.2
2626

2727
For the list of available versions, see:
2828
- https://spark-packages.org/package/datastax/spark-cassandra-connector
@@ -58,7 +58,7 @@ Run the `spark-shell` with the packages line for your version. To configure
5858
the default Spark Configuration pass key value pairs with `--conf`
5959

6060
$SPARK_HOME/bin/spark-shell --conf spark.cassandra.connection.host=127.0.0.1 \
61-
--packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.1
61+
--packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.2
6262

6363
This command would set the Spark Cassandra Connector parameter
6464
`spark.cassandra.connection.host` to `127.0.0.1`. Change this

doc/13_spark_shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Find additional versions at [Spark Packages](https://spark-packages.org/package/
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.11:2.4.1 --conf spark.cassandra.connection.host=yourCassandraClusterIp
21+
./bin/spark-shell [--master sparkMasterAddress] --jars yourAssemblyJar --packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.2 --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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ https://spark-packages.org/package/datastax/spark-cassandra-connector
1616

1717
```bash
1818
./bin/pyspark \
19-
--packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.1
19+
--packages com.datastax.spark:spark-cassandra-connector_2.11:2.4.2
2020
```
2121

2222
### Loading a DataFrame in Python

0 commit comments

Comments
 (0)