Class: Spotlight::RemoveTagsJob
- Inherits:
-
ApplicationJob
- Object
- ActiveJob::Base
- ApplicationJob
- Spotlight::RemoveTagsJob
- Includes:
- GatherDocuments, JobTracking
- Defined in:
- app/jobs/spotlight/remove_tags_job.rb
Instance Method Summary collapse
-
#perform(solr_params:, exhibit:, tags:) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength.
Methods included from GatherDocuments
Methods included from JobTracking
#finalize_job_tracker!, #initialize_job_tracker!, #job_tracker, #mark_job_as_failed!
Instance Method Details
#perform(solr_params:, exhibit:, tags:) ⇒ Object
rubocop:disable Metrics/AbcSize, Metrics/MethodLength
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'app/jobs/spotlight/remove_tags_job.rb', line 11 def perform(solr_params:, exhibit:, tags:, **) @errors = 0 each_document(solr_params, exhibit) do |document| sidecar = document.sidecar(exhibit) = sidecar. -= exhibit.tag(document.sidecar(exhibit), with: , on: :tags) document.reindex(update_params: {}) progress&.increment rescue StandardError => e job_tracker.append_log_entry(type: :error, exhibit: exhibit, message: e.to_s) @errors += 1 mark_job_as_failed! end exhibit.blacklight_config.repository.connection.commit job_tracker.append_log_entry(type: :info, exhibit: exhibit, message: "#{progress.progress} of #{progress.total} (#{@errors} errors)") end |