2023-07-27 14:11:17 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Importer::InstancesIndexImporter < Importer::BaseImporter
|
|
|
|
def import!
|
|
|
|
index.adapter.default_scope.find_in_batches(batch_size: @batch_size) do |tmp|
|
|
|
|
in_work_unit(tmp) do |instances|
|
2023-08-31 17:04:27 +00:00
|
|
|
bulk = build_bulk_body(instances)
|
2023-07-27 14:11:17 +00:00
|
|
|
|
2023-08-31 17:04:27 +00:00
|
|
|
indexed = bulk.size
|
|
|
|
deleted = 0
|
2023-07-27 14:11:17 +00:00
|
|
|
|
|
|
|
Chewy::Index::Import::BulkRequest.new(index).perform(bulk)
|
|
|
|
|
|
|
|
[indexed, deleted]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
wait!
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def index
|
|
|
|
InstancesIndex
|
|
|
|
end
|
|
|
|
end
|