You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
645 B
28 lines
645 B
# frozen_string_literal: true |
|
|
|
class Scheduler::IndexingScheduler |
|
include Sidekiq::Worker |
|
include Redisable |
|
|
|
sidekiq_options retry: 0 |
|
|
|
IMPORT_BATCH_SIZE = 1000 |
|
SCAN_BATCH_SIZE = 10 * IMPORT_BATCH_SIZE |
|
|
|
def perform |
|
indexes.each do |type| |
|
with_redis do |redis| |
|
redis.sscan_each("chewy:queue:#{type.name}", count: SCAN_BATCH_SIZE).each_slice(IMPORT_BATCH_SIZE) do |ids| |
|
type.import!(ids) |
|
redis.pipelined do |pipeline| |
|
pipeline.srem("chewy:queue:#{type.name}", ids) |
|
end |
|
end |
|
end |
|
end |
|
end |
|
|
|
def indexes |
|
[AccountsIndex, TagsIndex, StatusesIndex] |
|
end |
|
end
|
|
|