From 6f6da2505d74a692f19d02935e150b7e556cd5d2 Mon Sep 17 00:00:00 2001 From: beajohnson Date: Wed, 28 Aug 2024 14:49:11 -0700 Subject: [PATCH] udpated spark version to 3.5.2 per Madhavan --- modules/ROOT/partials/cdm-prerequisites.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/partials/cdm-prerequisites.adoc b/modules/ROOT/partials/cdm-prerequisites.adoc index a8d39bbd..25aaa434 100644 --- a/modules/ROOT/partials/cdm-prerequisites.adoc +++ b/modules/ROOT/partials/cdm-prerequisites.adoc @@ -2,7 +2,7 @@ Read the prerequisites below before using the Cassandra Data Migrator. * Install or switch to Java 11. The Spark binaries are compiled with this version of Java. -* Select a single VM to run this job and install https://archive.apache.org/dist/spark/spark-3.5.1/[Spark 3.5.1] there. +* Select a single VM to run this job and install https://archive.apache.org/dist/spark/spark-3.5.2/[Spark 3.5.2] there. No cluster is necessary. * Optionally, install https://maven.apache.org/download.cgi[Maven] 3.9.x if you want to build the JAR for local development. @@ -10,7 +10,7 @@ Run the following commands to install Apache Spark: [source,bash] ---- -wget https://archive.apache.org/dist/spark/spark-3.5.1/spark-3.5.1-bin-hadoop3-scala2.13.tgz +wget https://archive.apache.org/dist/spark/spark-3.5.2/spark-3.5.2-bin-hadoop3-scala2.13.tgz -tar -xvzf spark-3.5.1-bin-hadoop3-scala2.13.tgz +tar -xvzf spark-3.5.2-bin-hadoop3-scala2.13.tgz ----