Skip to content

Commit

Permalink
Disable atomic_restore by default
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter committed Sep 30, 2024
1 parent 86c284f commit b2e60a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ccr/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func init() {
// The default value is false, since clean tables will erase views unexpectedly.
flag.BoolVar(&featureCleanTableAndPartitions, "feature_clean_table_and_partitions", false,
"clean non restored tables and partitions during fullsync")
flag.BoolVar(&featureAtomicRestore, "feature_atomic_restore", true,
flag.BoolVar(&featureAtomicRestore, "feature_atomic_restore", false,
"replace tables in atomic during fullsync (otherwise the dest table will not be able to read).")
flag.BoolVar(&featureCreateViewDropExists, "feature_create_view_drop_exists", true,
"drop the exists view if exists, when sync the creating view binlog")
Expand Down

0 comments on commit b2e60a3

Please sign in to comment.