summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/consistency_checker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/database/consistency_checker.rb')
-rw-r--r--lib/gitlab/database/consistency_checker.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/database/consistency_checker.rb b/lib/gitlab/database/consistency_checker.rb
index e398fef744c..bf60c76a085 100644
--- a/lib/gitlab/database/consistency_checker.rb
+++ b/lib/gitlab/database/consistency_checker.rb
@@ -3,9 +3,9 @@
module Gitlab
module Database
class ConsistencyChecker
- BATCH_SIZE = 1000
- MAX_BATCHES = 25
- MAX_RUNTIME = 30.seconds # must be less than the scheduling frequency of the ConsistencyCheck jobs
+ BATCH_SIZE = 500
+ MAX_BATCHES = 20
+ MAX_RUNTIME = 5.seconds # must be less than the scheduling frequency of the ConsistencyCheck jobs
delegate :monotonic_time, to: :'Gitlab::Metrics::System'