@@ -32,14 +32,14 @@ and spark-shell/pyspark environments.
3232 - [ ✨ Highlights] ( #highlights )
3333 - [ 📚 Table of Contents] ( #tableofcontents )
3434 - [ Links to related work on Spark Performance] ( #links-to-related-work-on-spark-performance )
35- - [ 🚀 Quick start] ( #quickstart )
35+ - [ 🚀 Quick start] ( #quickstart )
3636 - [ Examples of sparkMeasure on notebooks] ( #examples-of-sparkmeasure-on-notebooks )
3737 - [ Examples of sparkMeasure on the CLI] ( #examples-of-sparkmeasure-on-the-cli )
3838 - [ Python CLI] ( #python-cli )
3939 - [ Scala CLI] ( #scala-cli )
4040 - [ Memory report] ( #memory-report )
4141 - [ CLI example for Task Metrics:] ( #cli-example-for-task-metrics )
42- - [ Setting Up SparkMeasure with Spark] ( #setting-up-sparkmeasure-with-spark )
42+ - [ Setting Up SparkMeasure with Spark] ( #setting-up-sparkmeasure-with-spark )
4343 - [ Version Compatibility for SparkMeasure] ( #version-compatibility-for-sparkmeasure )
4444 - [ 📥 Downloading SparkMeasure] ( #-downloading-sparkmeasure )
4545 - [ Setup Examples] ( #setup-examples )
@@ -48,7 +48,7 @@ and spark-shell/pyspark environments.
4848 - [ Including sparkMeasure in your Spark environment] ( #including-sparkmeasure-in-your-spark-environment )
4949 - [ Running unit tests] ( #running-unit-tests )
5050 - [ Notes on Spark Metrics] ( #notes-on-spark-metrics )
51- - [ Documentation, API, and examples] ( #documentation-api-and-examples )
51+ - [ Documentation, API, and examples] ( #documentation-api-and-examples )
5252 - [ Architecture diagram] ( #architecture-diagram )
5353 - [ Main concepts underlying sparkMeasure implementation] ( #main-concepts-underlying-sparkmeasure-implementation )
5454 - [ FAQ:] ( #faq )
@@ -95,7 +95,7 @@ Main author and contact: Luca.Canali@cern.ch
9595 # Python CLI
9696 # pip install pyspark
9797 pip install sparkmeasure
98- pyspark --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26
98+ pyspark --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27
9999
100100 # Import sparkMeasure
101101 from sparkmeasure import StageMetrics
@@ -118,12 +118,12 @@ Main author and contact: Luca.Canali@cern.ch
118118 # get metrics as a dictionary
119119 metrics = stagemetrics.aggregate_stage_metrics()
120120 ```
121- Note: for Spark 3.x with Scala 2.12, use ` --packages ch.cern.sparkmeasure:spark-measure_2.12:0.26 `
122- instead of ` --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26 `
121+ Note: for Spark 3.x with Scala 2.12, use ` --packages ch.cern.sparkmeasure:spark-measure_2.12:0.27 `
122+ instead of ` --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27 `
123123
124124#### Scala CLI
125125 ```
126- spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26
126+ spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27
127127
128128 val stageMetrics = ch.cern.sparkmeasure.StageMetrics(spark)
129129 stageMetrics.runAndMeasure(spark.sql("select count(*) from range(1000) cross join range(1000) cross join range(1000)").show())
@@ -206,7 +206,7 @@ Notes:
206206This is similar but slightly different from the example above as it collects metrics at the Task-level rather than Stage-level
207207 ```
208208 # Scala CLI
209- spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26
209+ spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27
210210
211211 val taskMetrics = ch.cern.sparkmeasure.TaskMetrics(spark)
212212 taskMetrics.runAndMeasure(spark.sql("select count(*) from range(1000) cross join range(1000) cross join range(1000)").show())
@@ -215,7 +215,7 @@ This is similar but slightly different from the example above as it collects met
215215 # Python CLI
216216 # pip install pyspark
217217 pip install sparkmeasure
218- pyspark --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26
218+ pyspark --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27
219219
220220 from sparkmeasure import TaskMetrics
221221 taskmetrics = TaskMetrics(spark)
@@ -229,8 +229,8 @@ This is similar but slightly different from the example above as it collects met
229229
230230| Spark Version | Recommended SparkMeasure Version | Scala Version |
231231| -------------- | ----------------------------------| ---------------------|
232- | Spark 4.x | 0.26 (latest) | Scala 2.13 |
233- | Spark 3.x | 0.26 (latest) | Scala 2.12 and 2.13 |
232+ | Spark 4.x | 0.27 (latest) | Scala 2.13 |
233+ | Spark 3.x | 0.27 (latest) | Scala 2.12 and 2.13 |
234234| Spark 2.4, 2.3 | 0.19 | Scala 2.11 |
235235| Spark 2.2, 2.1 | 0.16 | Scala 2.11 |
236236
@@ -244,7 +244,7 @@ To get SparkMeasure, choose one of the following options:
244244
2452452 . ** Specific Versions:**
246246
247- * Download JAR files from the [ sparkMeasure release notes] ( https://github.com/LucaCanali/sparkMeasure/releases/tag/v0.26 ) .
247+ * Download JAR files from the [ sparkMeasure release notes] ( https://github.com/LucaCanali/sparkMeasure/releases/tag/v0.27 ) .
248248
2492493 . ** Latest Development Builds:**
250250
@@ -258,21 +258,21 @@ To get SparkMeasure, choose one of the following options:
258258
259259#### Spark 4 with Scala 2.13
260260
261- * ** Scala:** ` spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26 `
261+ * ** Scala:** ` spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27 `
262262* ** Python:**
263263
264264 ``` bash
265- pyspark --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26
265+ pyspark --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27
266266 pip install sparkmeasure
267267 ```
268268
269269#### Spark 3 with Scala 2.12
270270
271- * ** Scala:** ` spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.12:0.26 `
271+ * ** Scala:** ` spark-shell --packages ch.cern.sparkmeasure:spark-measure_2.12:0.27 `
272272* ** Python:**
273273
274274 ``` bash
275- pyspark --packages ch.cern.sparkmeasure:spark-measure_2.12:0.26
275+ pyspark --packages ch.cern.sparkmeasure:spark-measure_2.12:0.27
276276 pip install sparkmeasure
277277 ```
278278### Including sparkMeasure in your Spark environment
@@ -282,14 +282,14 @@ Choose your preferred method:
282282* Use the ` --packages ` option:
283283
284284 ``` bash
285- --packages ch.cern.sparkmeasure:spark-measure_2.13:0.26
285+ --packages ch.cern.sparkmeasure:spark-measure_2.13:0.27
286286 ```
287287* Directly reference the JAR file:
288288
289289 ``` bash
290- --jars /path/to/spark-measure_2.13-0.26 .jar
291- --jars https://github.com/LucaCanali/sparkMeasure/releases/download/v0.26 /spark-measure_2.13-0.26 .jar
292- --conf spark.driver.extraClassPath=/path/to/spark-measure_2.13-0.26 .jar
290+ --jars /path/to/spark-measure_2.13-0.27 .jar
291+ --jars https://github.com/LucaCanali/sparkMeasure/releases/download/v0.27 /spark-measure_2.13-0.27 .jar
292+ --conf spark.driver.extraClassPath=/path/to/spark-measure_2.13-0.27 .jar
293293 ```
294294
295295
0 commit comments