consumer_groups.draw do
unless FlipperHelper.enabled? :shutdown_consumer_a
topic "topic_a" do
consumer ConsumerA
end
end
unless FlipperHelper.enabled? :shutdown_consumer_b
topic "topic_b" do
consumer ConsumerB
end
end
unless FlipperHelper.enabled? :shutdown_consumer_c
topic "topic_c" do
consumer ConsumerC
end
end
end
end
messes up with subscription groups count and makes it hard to build proper client ids for static group membership.
We need to be able to deactivate given topics (hence sub groups in some cases) but keep them in routes, not to impact indexing
Routing style like this:
messes up with subscription groups count and makes it hard to build proper client ids for static group membership.
We need to be able to deactivate given topics (hence sub groups in some cases) but keep them in routes, not to impact indexing