Skip to content

Commit 97ad6cc

Browse files
authored
Merge pull request #180 from datastax/feature/CDM-88
Documentation changes
2 parents b1ba24c + 30eb6f1 commit 97ad6cc

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

RELEASE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Release Notes
2+
## [4.1.1] - 2023-06-29
3+
- Documentation fixes in readme & properties file
4+
- Config namespace fixes
5+
26
## [4.1.0] - 2023-06-20
37
- Refactored exception handling and loading of token-range filters to use the same Migrate & DiffData jobs instead of separate jobs to reduce code & maintenance overhead
48

SIT/features/06_partition_range/migrate_with_partitionfile.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spark.cdm.perfops.numParts 1
88
spark.cdm.autocorrect.missing true
99
spark.cdm.autocorrect.mismatch true
1010

11-
spark.tokenrange.partitionFile ./partitions.csv
11+
spark.cdm.tokenrange.partitionFile ./partitions.csv
1212

SIT/features/07_migrate_rows/migrate_with_pkrowsfile.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ spark.cdm.schema.origin.keyspaceTable origin.feature_migrate_rows
55
spark.cdm.schema.target.keyspaceTable target.feature_migrate_rows
66
spark.cdm.perfops.numParts 1
77

8-
spark.tokenrange.partitionFile ./primary_key_rows.csv
8+
spark.cdm.tokenrange.partitionFile ./primary_key_rows.csv

src/main/java/com/datastax/cdm/properties/KnownProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public enum PropertyType {
136136
//==========================================================================
137137
// Error handling
138138
//==========================================================================
139-
public static final String TOKEN_RANGE_PARTITION_FILE = "spark.tokenrange.partitionFile";
139+
public static final String TOKEN_RANGE_PARTITION_FILE = "spark.cdm.tokenrange.partitionFile";
140140
static {
141141
types.put(TOKEN_RANGE_PARTITION_FILE, PropertyType.STRING);
142142
}

0 commit comments

Comments
 (0)