Skip to content

Commit 02e9d05

Browse files
committed
Further updates to sync docs up to date
1 parent 6f6da25 commit 02e9d05

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

modules/ROOT/partials/cdm-guardrail-checks.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Example:
99
--conf spark.cdm.schema.origin.keyspaceTable="<keyspacename>.<tablename>" \
1010
--conf spark.cdm.feature.guardrail.colSizeInKB=10000 \
1111
--master "local[*]" --driver-memory 25G --executor-memory 25G \
12-
--class com.datastax.cdm.job.GuardrailCheck cassandra-data-migrator-4.x.x.jar &> logfile_name_$(date +%Y%m%d_%H_%M).txt
12+
--class com.datastax.cdm.job.GuardrailCheck cassandra-data-migrator-5.x.x.jar &> logfile_name_$(date +%Y%m%d_%H_%M).txt
1313
----

modules/ROOT/partials/cdm-prerequisites.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ Read the prerequisites below before using the Cassandra Data Migrator.
22

33
* Install or switch to Java 11.
44
The Spark binaries are compiled with this version of Java.
5-
* 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.
6-
No cluster is necessary.
7-
* Optionally, install https://maven.apache.org/download.cgi[Maven] 3.9.x if you want to build the JAR for local development.
5+
* Select a single VM to run this job and install https://archive.apache.org/dist/spark/spark-3.5.3/[Spark 3.5.3] there.
6+
No cluster is necessary and is recommended for most one-time migrations however cluster mode is also supported for complex migrations.
7+
* Optionally, install https://maven.apache.org/download.cgi[Maven] `3.9.x` if you want to build the JAR for local development.
88
99
Run the following commands to install Apache Spark:
1010

1111
[source,bash]
1212
----
13-
wget https://archive.apache.org/dist/spark/spark-3.5.2/spark-3.5.2-bin-hadoop3-scala2.13.tgz
13+
wget https://archive.apache.org/dist/spark/spark-3.5.3/spark-3.5.3-bin-hadoop3-scala2.13.tgz
1414
15-
tar -xvzf spark-3.5.2-bin-hadoop3-scala2.13.tgz
15+
tar -xvzf spark-3.5.3-bin-hadoop3-scala2.13.tgz
1616
----

modules/ROOT/partials/cdm-validation-steps.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Example:
66
./spark-submit --properties-file cdm.properties \
77
--conf spark.cdm.schema.origin.keyspaceTable="<keyspacename>.<tablename>" \
88
--master "local[*]" --driver-memory 25G --executor-memory 25G \
9-
--class com.datastax.cdm.job.DiffData cassandra-data-migrator-x.y.z.jar &> logfile_name_$(date +%Y%m%d_%H_%M).txt
9+
--class com.datastax.cdm.job.DiffData cassandra-data-migrator-5.x.x.jar &> logfile_name_$(date +%Y%m%d_%H_%M).txt
1010
----
1111

1212
The {cstar-data-migrator} validation job reports differences as `ERROR` entries in the log file.
@@ -41,6 +41,6 @@ spark.cdm.autocorrect.mismatch false|true
4141

4242
[IMPORTANT]
4343
====
44-
The {cstar-data-migrator} validation job never deletes records from the target cluster.
44+
The {cstar-data-migrator} validation job never deletes records from the source or target clusters.
4545
The job only adds or updates data on the target cluster.
4646
====

modules/ROOT/partials/use-cdm-migrator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This is the full set of configurable settings.
1717
./spark-submit --properties-file cdm.properties \
1818
--conf spark.cdm.schema.origin.keyspaceTable="<keyspacename>.<tablename>" \
1919
--master "local[*]" --driver-memory 25G --executor-memory 25G \
20-
--class com.datastax.cdm.job.Migrate cassandra-data-migrator-x.y.z.jar &> logfile_name_$(date +%Y%m%d_%H_%M).txt
20+
--class com.datastax.cdm.job.Migrate cassandra-data-migrator-x.x.x.jar &> logfile_name_$(date +%Y%m%d_%H_%M).txt
2121
----
2222

2323
[TIP]

0 commit comments

Comments
 (0)