2022-05-23 06:16:43 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Importer::AccountsIndexImporter < Importer::BaseImporter
|
|
|
|
def import!
|
|
|
|
scope.includes(:account_stat).find_in_batches(batch_size: @batch_size) do |tmp|
|
|
|
|
in_work_unit(tmp) do |accounts|
|
2023-09-01 03:04:27 +10:00
|
|
|
bulk = build_bulk_body(accounts)
|
2022-05-23 06:16:43 +10:00
|
|
|
|
2023-09-01 03:04:27 +10:00
|
|
|
indexed = bulk.size
|
|
|
|
deleted = 0
|
2022-05-23 06:16:43 +10:00
|
|
|
|
|
|
|
Chewy::Index::Import::BulkRequest.new(index).perform(bulk)
|
|
|
|
|
|
|
|
[indexed, deleted]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
wait!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def index
|
|
|
|
AccountsIndex
|
|
|
|
end
|
|
|
|
|
|
|
|
def scope
|
|
|
|
Account.searchable
|
|
|
|
end
|
|
|
|
end
|