Sha256: 3c94ec0b0a7c0c7b52e4cd5c34798b6b46b2b184c74e50ed6f171ae12785bc16

Contents?: true

Size: 953 Bytes

Versions: 6

Compression:

Stored size: 953 Bytes

Contents

# frozen_string_literal: true

module DatadogBackup
  # Used by CLI and Dashboards to size thread pool according to available CPU resourcess.
  module ThreadPool
    TPOOL = ::Concurrent::ThreadPoolExecutor.new(
      min_threads: [2, Concurrent.processor_count].max,
      max_threads: [2, Concurrent.processor_count].max * 2,
      fallback_policy: :abort
    )

    def self.watcher
      Thread.new(TPOOL) do |pool|
        while pool.queue_length.positive?
          sleep 2
          LOGGER.info("#{pool.queue_length} tasks remaining for execution.")
        end
      end
    end

    def self.shutdown
      LOGGER.fatal 'Shutdown signal caught. Performing orderly shut down of thread pool. Press Ctrl+C again to forcibly shut down, but be warned, DATA LOSS MAY OCCUR.'
      TPOOL.shutdown
      TPOOL.wait_for_termination
    rescue SystemExit, Interrupt
      LOGGER.fatal 'OK Nuking, DATA LOSS MAY OCCUR.'
      TPOOL.kill
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
datadog_backup-4.0.1 lib/datadog_backup/thread_pool.rb
datadog_backup-4.0.0 lib/datadog_backup/thread_pool.rb
datadog_backup-3.3.0 lib/datadog_backup/thread_pool.rb
datadog_backup-3.2.1 lib/datadog_backup/thread_pool.rb
datadog_backup-3.2.0 lib/datadog_backup/thread_pool.rb
datadog_backup-3.1.1 lib/datadog_backup/thread_pool.rb