File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ Configure a new Scala project with the Apache Spark and dependency.
15
15
16
16
The dependencies are easily retrieved via Maven Central
17
17
18
- libraryDependencies += "com.datastax.spark" % "spark-cassandra-connector_2.12" % "3.5.0 "
18
+ libraryDependencies += "com.datastax.spark" % "spark-cassandra-connector_2.12" % "3.5.1 "
19
19
20
20
The spark-packages libraries can also be used with spark-submit and spark shell, these
21
21
commands will place the connector and all of its dependencies on the path of the
22
22
Spark Driver and all Spark Executors.
23
23
24
- $SPARK_HOME/bin/spark-shell --packages com.datastax.spark:spark-cassandra-connector_2.12:3.5.0
25
- $SPARK_HOME/bin/spark-submit --packages com.datastax.spark:spark-cassandra-connector_2.12:3.5.0
24
+ $SPARK_HOME/bin/spark-shell --packages com.datastax.spark:spark-cassandra-connector_2.12:3.5.1
25
+ $SPARK_HOME/bin/spark-submit --packages com.datastax.spark:spark-cassandra-connector_2.12:3.5.1
26
26
27
27
For the list of available versions, see:
28
28
- 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
42
42
the default Spark Configuration pass key value pairs with ` --conf `
43
43
44
44
$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.5.0
45
+ --packages com.datastax.spark:spark-cassandra-connector_2.12:3.5.1
46
46
--conf spark.sql.extensions=com.datastax.spark.connector.CassandraSparkExtensions
47
47
48
48
This command would set the Spark Cassandra Connector parameter
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Find additional versions at [Spark Packages](https://repo1.maven.org/maven2/com/
18
18
``` bash
19
19
cd spark/install/dir
20
20
# 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.5.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.5.1 --conf spark.cassandra.connection.host=yourCassandraClusterIp
22
22
```
23
23
24
24
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
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ shell similarly to how the spark shell is started. The preferred method is now t
14
14
15
15
``` bash
16
16
./bin/pyspark \
17
- --packages com.datastax.spark:spark-cassandra-connector_2.12:3.5.0 \
17
+ --packages com.datastax.spark:spark-cassandra-connector_2.12:3.5.1 \
18
18
--conf spark.sql.extensions=com.datastax.spark.connector.CassandraSparkExtensions
19
19
```
20
20
You can’t perform that action at this time.
0 commit comments