I have a Rails app which pushes job to a Redis queue. Then in other machines I have several workers that fetch those jobs and push back results via HTTP to Rails.
Why would those Sidekiq workers show an status of interrupted within the sidekiq_monitor interface? I am certain those jobs have finished successfully.
I am guessing is because since they are outside the Rails app itself there is no way they can upload the status within the ActiveRecord? Any solutions on this?
I have a Rails app which pushes job to a Redis queue. Then in other machines I have several workers that fetch those jobs and push back results via HTTP to Rails.
Why would those Sidekiq workers show an status of interrupted within the sidekiq_monitor interface? I am certain those jobs have finished successfully.
I am guessing is because since they are outside the Rails app itself there is no way they can upload the status within the ActiveRecord? Any solutions on this?