Sha256: d5117096b98a67b3ca8ff74fe60ce87fdd44855caeaff02d0720b88a73259adb

Contents?: true

Size: 948 Bytes

Versions: 1

Compression:

Stored size: 948 Bytes

Contents

# frozen_string_literal: true

module DatadogBackup
  # Used by CLI and Dashboards to size thread pool according to available CPU cores.
  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

1 entries across 1 versions & 1 rubygems

Version Path
datadog_backup-3.1.0 lib/datadog_backup/thread_pool.rb