2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-04-05 12:29:46 +08:00
|
|
|
module Jobs
|
2013-05-08 13:20:38 +08:00
|
|
|
# various consistency checks
|
2019-10-02 12:01:53 +08:00
|
|
|
class EnsureDbConsistency < ::Jobs::Scheduled
|
2014-02-11 13:11:40 +08:00
|
|
|
every 12.hours
|
2013-08-08 01:25:05 +08:00
|
|
|
|
2013-04-05 12:29:46 +08:00
|
|
|
def execute(args)
|
2019-08-29 11:27:04 +08:00
|
|
|
start_measure
|
|
|
|
|
|
|
|
[
|
|
|
|
UserVisit,
|
|
|
|
Group,
|
|
|
|
Notification,
|
|
|
|
TopicFeaturedUsers,
|
|
|
|
PostRevision,
|
|
|
|
Topic,
|
|
|
|
Badge,
|
|
|
|
CategoryUser,
|
|
|
|
UserOption,
|
|
|
|
Tag,
|
|
|
|
CategoryTagStat,
|
|
|
|
User,
|
|
|
|
UserAvatar,
|
|
|
|
Category
|
|
|
|
].each do |klass|
|
|
|
|
klass.ensure_consistency!
|
|
|
|
measure(klass)
|
|
|
|
end
|
|
|
|
|
|
|
|
UserAction.ensure_consistency!(13.hours.ago)
|
|
|
|
measure(UserAction)
|
|
|
|
|
2016-05-03 05:15:32 +08:00
|
|
|
UserStat.ensure_consistency!(13.hours.ago)
|
2019-08-29 11:27:04 +08:00
|
|
|
measure(UserStat)
|
|
|
|
|
|
|
|
Rails.logger.debug(format_measure)
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def format_measure
|
|
|
|
result = +"EnsureDbConsitency Times\n"
|
|
|
|
result << @measure_times.map do |name, duration|
|
|
|
|
" #{name}: #{duration}"
|
|
|
|
end.join("\n")
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
def start_measure
|
|
|
|
@measure_times = []
|
|
|
|
@measure_start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
2013-04-05 12:29:46 +08:00
|
|
|
end
|
2019-08-29 11:27:04 +08:00
|
|
|
|
|
|
|
def measure(step = nil)
|
|
|
|
@measure_now = Process.clock_gettime(Process::CLOCK_MONOTONIC)
|
|
|
|
if @measure_start
|
|
|
|
@measure_times << [step, @measure_now - @measure_start]
|
|
|
|
end
|
|
|
|
@measure_start = @measure_now
|
|
|
|
end
|
|
|
|
|
2013-04-05 12:29:46 +08:00
|
|
|
end
|
|
|
|
end
|