Skip to content
Snippets Groups Projects
Verified Commit c36a546a authored by Matt Kasa's avatar Matt Kasa :five: Committed by GitLab
Browse files

Merge branch...

Merge branch 'not_owned--chaos--cpu-spin-worker--chaos--db-spin-worker--chaos--kill-worker--chaos--leak-mem-worker--chaos--sleep-worker' into 'master' 

Change data consistency for workers maintained by not_owned

See merge request !170350



Merged-by: default avatarMatt Kasa <mkasa@gitlab.com>
Approved-by: Andrew Newdigate's avatarAndrew Newdigate <andrew@gitlab.com>
Approved-by: default avatarMatt Kasa <mkasa@gitlab.com>
Co-authored-by: default avatarLeonardo Rosa <ldarosa@gitlab.com>
parents 3a57cd4e cd5f35ff
No related branches found
No related tags found
2 merge requests!171309Draft: Fetch issues / MRs / epics count in the sidebar with GraphQL,!170350Change data consistency for workers maintained by not_owned
Pipeline #1522763043 passed with warnings
Pipeline: E2E Omnibus GitLab EE

#1522779911

    Pipeline: E2E CNG

    #1522779907

      Pipeline: E2E GDK

      #1522771717

        +30
        ......@@ -9,11 +9,6 @@ SidekiqLoadBalancing/WorkerDataConsistency:
        - 'app/workers/bulk_imports/finish_batched_pipeline_worker.rb'
        - 'app/workers/bulk_imports/pipeline_batch_worker.rb'
        - 'app/workers/bulk_imports/relation_batch_export_worker.rb'
        - 'app/workers/chaos/cpu_spin_worker.rb'
        - 'app/workers/chaos/db_spin_worker.rb'
        - 'app/workers/chaos/kill_worker.rb'
        - 'app/workers/chaos/leak_mem_worker.rb'
        - 'app/workers/chaos/sleep_worker.rb'
        - 'app/workers/chat_notification_worker.rb'
        - 'app/workers/ci/archive_traces_cron_worker.rb'
        - 'app/workers/ci/build_prepare_worker.rb'
        ......
        ......@@ -4,7 +4,7 @@ module Chaos
        class CpuSpinWorker # rubocop:disable Scalability/IdempotentWorker
        include ApplicationWorker
        data_consistency :always
        data_consistency :sticky
        sidekiq_options retry: 3
        include ChaosQueue
        ......
        ......@@ -4,7 +4,7 @@ module Chaos
        class DbSpinWorker # rubocop:disable Scalability/IdempotentWorker
        include ApplicationWorker
        data_consistency :always
        data_consistency :sticky
        sidekiq_options retry: 3
        include ChaosQueue
        ......
        ......@@ -4,7 +4,7 @@ module Chaos
        class KillWorker # rubocop:disable Scalability/IdempotentWorker
        include ApplicationWorker
        data_consistency :always
        data_consistency :sticky
        include ChaosQueue
        sidekiq_options retry: false
        ......
        ......@@ -4,7 +4,7 @@ module Chaos
        class LeakMemWorker # rubocop:disable Scalability/IdempotentWorker
        include ApplicationWorker
        data_consistency :always
        data_consistency :sticky
        sidekiq_options retry: 3
        include ChaosQueue
        ......
        ......@@ -4,7 +4,7 @@ module Chaos
        class SleepWorker # rubocop:disable Scalability/IdempotentWorker
        include ApplicationWorker
        data_consistency :always
        data_consistency :sticky
        sidekiq_options retry: 3
        include ChaosQueue
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment