Module: Karafka::Pro::Routing::Features::Multiplexing::SubscriptionGroup

Defined in:
lib/karafka/pro/routing/features/multiplexing/subscription_group.rb

Overview

Adds methods needed for the multiplexing to work

Instance Method Summary collapse

Instance Method Details

#multiplexingConfig

Returns multiplexing config.

Returns:

  • (Config)

    multiplexing config



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/karafka/pro/routing/features/multiplexing/subscription_group.rb', line 31

def multiplexing
  @multiplexing ||= begin
    max = @details.fetch(:multiplexing_max, 1)
    min = @details.fetch(:multiplexing_min, max)
    boot = @details.fetch(:multiplexing_boot, max / 2)
    scale_delay = @details.fetch(:multiplexing_scale_delay, 60_000)
    active = max > 1

    Config.new(
      active: active,
      min: min,
      max: max,
      boot: boot,
      scale_delay: scale_delay
    )
  end
end

#multiplexing?Boolean

Returns is multiplexing active.

Returns:

  • (Boolean)

    is multiplexing active



50
51
52
# File 'lib/karafka/pro/routing/features/multiplexing/subscription_group.rb', line 50

def multiplexing?
  multiplexing.active?
end