File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -74,23 +74,23 @@ class CheckpointConfig {
7474
7575 // Period of a checkpoint in terms of time in seconds.
7676 // Dynamic in EPConfig
77- std::atomic<rel_time_t > checkpointPeriod{ 5 } ;
77+ std::atomic<rel_time_t > checkpointPeriod;
7878
7979 // Number of max items allowed in each checkpoint.
8080 // Dynamic in EPConfig
81- std::atomic<size_t > checkpointMaxItems{ 1000 } ;
81+ std::atomic<size_t > checkpointMaxItems;
8282
8383 // Number of max checkpoints allowed.
8484 // Dynamic in EPConfig
85- std::atomic<size_t > maxCheckpoints{ 2 } ;
85+ std::atomic<size_t > maxCheckpoints;
8686
8787 // Flag indicating if a new checkpoint is created once the number of items
8888 // in the current checkpoint is greater than the max number allowed.
8989 // Dynamic in EPConfig
90- std::atomic<bool > itemNumBasedNewCheckpoint{ true } ;
90+ std::atomic<bool > itemNumBasedNewCheckpoint;
9191
9292 // Flag indicating if persistence is enabled.
93- bool persistenceEnabled{ true } ;
93+ bool persistenceEnabled;
9494
95- CheckpointRemoval checkpointRemovalMode = CheckpointRemoval::Eager ;
95+ CheckpointRemoval checkpointRemovalMode;
9696};
You can’t perform that action at this time.
0 commit comments