@@ -119,7 +119,7 @@ The package version has the following semantics: `spark-extension_{SCALA_COMPAT_
119119Add this line to your ` build.sbt ` file:
120120
121121``` sbt
122- libraryDependencies += " uk.co.gresearch.spark" %% " spark-extension" % " 2.7 .0-3.4"
122+ libraryDependencies += " uk.co.gresearch.spark" %% " spark-extension" % " 2.8 .0-3.4"
123123```
124124
125125### Maven
@@ -130,7 +130,7 @@ Add this dependency to your `pom.xml` file:
130130<dependency >
131131 <groupId >uk.co.gresearch.spark</groupId >
132132 <artifactId >spark-extension_2.12</artifactId >
133- <version >2.7 .0-3.4</version >
133+ <version >2.8 .0-3.4</version >
134134</dependency >
135135```
136136
@@ -139,7 +139,7 @@ Add this dependency to your `pom.xml` file:
139139Submit your Spark app with the Spark Extension dependency (version ≥1.1.0) as follows:
140140
141141``` shell script
142- spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.7 .0-3.3 [jar]
142+ spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.8 .0-3.3 [jar]
143143```
144144
145145Note: Pick the right Scala version (here 2.12) and Spark version (here 3.3) depending on your Spark version.
@@ -149,7 +149,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.3) depe
149149Launch a Spark Shell with the Spark Extension dependency (version ≥1.1.0) as follows:
150150
151151``` shell script
152- spark-shell --packages uk.co.gresearch.spark:spark-extension_2.12:2.7 .0-3.4
152+ spark-shell --packages uk.co.gresearch.spark:spark-extension_2.12:2.8 .0-3.4
153153```
154154
155155Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depending on your Spark Shell version.
@@ -165,7 +165,7 @@ from pyspark.sql import SparkSession
165165
166166spark = SparkSession \
167167 .builder \
168- .config(" spark.jars.packages" , " uk.co.gresearch.spark:spark-extension_2.12:2.7 .0-3.4" ) \
168+ .config(" spark.jars.packages" , " uk.co.gresearch.spark:spark-extension_2.12:2.8 .0-3.4" ) \
169169 .getOrCreate()
170170```
171171
@@ -176,7 +176,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depe
176176Launch the Python Spark REPL with the Spark Extension dependency (version ≥1.1.0) as follows:
177177
178178``` shell script
179- pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.7 .0-3.4
179+ pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.8 .0-3.4
180180```
181181
182182Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depending on your PySpark version.
@@ -186,7 +186,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depe
186186Run your Python scripts that use PySpark via ` spark-submit ` :
187187
188188``` shell script
189- spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.7 .0-3.4 [script.py]
189+ spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.8 .0-3.4 [script.py]
190190```
191191
192192Note: Pick the right Scala version (here 2.12) and Spark version (here 3.4) depending on your Spark version.
@@ -200,7 +200,7 @@ Running your Python application on a Spark cluster will still require one of the
200200to add the Scala package to the Spark environment.
201201
202202``` shell script
203- pip install pyspark-extension==2.7 .0.3.4
203+ pip install pyspark-extension==2.8 .0.3.4
204204```
205205
206206Note: Pick the right Spark version (here 3.4) depending on your PySpark version.
@@ -210,7 +210,7 @@ Note: Pick the right Spark version (here 3.4) depending on your PySpark version.
210210There are plenty of [ Data Science notebooks] ( https://datasciencenotebook.org/ ) around. To use this library,
211211add ** a jar dependency** to your notebook using these ** Maven coordinates** :
212212
213- uk.co.gresearch.spark:spark-extension_2.12:2.7 .0-3.4
213+ uk.co.gresearch.spark:spark-extension_2.12:2.8 .0-3.4
214214
215215Or [ download the jar] ( https://mvnrepository.com/artifact/uk.co.gresearch.spark/spark-extension ) and place it
216216on a filesystem where it is accessible by the notebook, and reference that jar file directly.
0 commit comments