@@ -198,7 +198,7 @@ The package version has the following semantics: `spark-extension_{SCALA_COMPAT_
198198Add this line to your ` build.sbt ` file:
199199
200200``` sbt
201- libraryDependencies += " uk.co.gresearch.spark" %% " spark-extension" % " 2.14.0 -3.5"
201+ libraryDependencies += " uk.co.gresearch.spark" %% " spark-extension" % " 2.14.1 -3.5"
202202```
203203
204204### Maven
@@ -209,7 +209,7 @@ Add this dependency to your `pom.xml` file:
209209<dependency >
210210 <groupId >uk.co.gresearch.spark</groupId >
211211 <artifactId >spark-extension_2.12</artifactId >
212- <version >2.14.0 -3.5</version >
212+ <version >2.14.1 -3.5</version >
213213</dependency >
214214```
215215
@@ -219,7 +219,7 @@ Add this dependency to your `build.gradle` file:
219219
220220``` groovy
221221dependencies {
222- implementation "uk.co.gresearch.spark:spark-extension_2.12:2.14.0 -3.5"
222+ implementation "uk.co.gresearch.spark:spark-extension_2.12:2.14.1 -3.5"
223223}
224224```
225225
@@ -228,7 +228,7 @@ dependencies {
228228Submit your Spark app with the Spark Extension dependency (version ≥1.1.0) as follows:
229229
230230``` shell script
231- spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0 -3.5 [jar]
231+ spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1 -3.5 [jar]
232232```
233233
234234Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your Spark version.
@@ -238,7 +238,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depe
238238Launch a Spark Shell with the Spark Extension dependency (version ≥1.1.0) as follows:
239239
240240``` shell script
241- spark-shell --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0 -3.5
241+ spark-shell --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1 -3.5
242242```
243243
244244Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your Spark Shell version.
@@ -254,7 +254,7 @@ from pyspark.sql import SparkSession
254254
255255spark = SparkSession \
256256 .builder \
257- .config(" spark.jars.packages" , " uk.co.gresearch.spark:spark-extension_2.12:2.14.0 -3.5" ) \
257+ .config(" spark.jars.packages" , " uk.co.gresearch.spark:spark-extension_2.12:2.14.1 -3.5" ) \
258258 .getOrCreate()
259259```
260260
@@ -265,7 +265,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depe
265265Launch the Python Spark REPL with the Spark Extension dependency (version ≥1.1.0) as follows:
266266
267267``` shell script
268- pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0 -3.5
268+ pyspark --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1 -3.5
269269```
270270
271271Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your PySpark version.
@@ -275,7 +275,7 @@ Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depe
275275Run your Python scripts that use PySpark via ` spark-submit ` :
276276
277277``` shell script
278- spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.0 -3.5 [script.py]
278+ spark-submit --packages uk.co.gresearch.spark:spark-extension_2.12:2.14.1 -3.5 [script.py]
279279```
280280
281281Note: Pick the right Scala version (here 2.12) and Spark version (here 3.5) depending on your Spark version.
@@ -289,7 +289,7 @@ Running your Python application on a Spark cluster will still require one of the
289289to add the Scala package to the Spark environment.
290290
291291``` shell script
292- pip install pyspark-extension==2.14.0 .3.5
292+ pip install pyspark-extension==2.14.1 .3.5
293293```
294294
295295Note: Pick the right Spark version (here 3.5) depending on your PySpark version.
@@ -299,7 +299,7 @@ Note: Pick the right Spark version (here 3.5) depending on your PySpark version.
299299There are plenty of [ Data Science notebooks] ( https://datasciencenotebook.org/ ) around. To use this library,
300300add ** a jar dependency** to your notebook using these ** Maven coordinates** :
301301
302- uk.co.gresearch.spark:spark-extension_2.12:2.14.0 -3.5
302+ uk.co.gresearch.spark:spark-extension_2.12:2.14.1 -3.5
303303
304304Or [ download the jar] ( https://mvnrepository.com/artifact/uk.co.gresearch.spark/spark-extension ) and place it
305305on a filesystem where it is accessible by the notebook, and reference that jar file directly.
0 commit comments