Sha256: 7129d1b0a530176ee032dfe019f3f7708a2a1f448daf98c9d23fce8dcba10073
Contents?: true
Size: 925 Bytes
Versions: 17
Compression:
Stored size: 925 Bytes
Contents
# thread-local (technically fiber-local) indexer # used to aggregate bulk callbacks across models module Searchkick class Indexer attr_reader :queued_items def initialize @queued_items = [] end def queue(items) @queued_items.concat(items) perform unless Searchkick.callbacks_value == :bulk end def perform items = @queued_items @queued_items = [] return if items.empty? response = Searchkick.client.bulk(body: items) if response["errors"] # note: delete does not set error when item not found first_with_error = response["items"].map do |item| (item["index"] || item["delete"] || item["update"]) end.find { |item| item["error"] } raise ImportError, "#{first_with_error["error"]} on item with id '#{first_with_error["_id"]}'" end # maybe return response in future nil end end end
Version data entries
17 entries across 17 versions & 1 rubygems