diff --git a/Dockerfile b/Dockerfile index 98f9936..c0eba58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,4 +12,4 @@ RUN bundle install COPY . $INSTALL_PATH -CMD ["ruby", "app.rb"] +CMD bundle exec karafka server diff --git a/Gemfile b/Gemfile index d360c2a..a65f522 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ source 'https://rubygems.org' - ruby '2.5.1' +gem 'karafka' diff --git a/Gemfile.lock b/Gemfile.lock index e69de29..1b3c2bd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -0,0 +1,92 @@ +GEM + remote: https://rubygems.org/ + specs: + activesupport (5.2.0) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 0.7, < 2) + minitest (~> 5.1) + tzinfo (~> 1.1) + concurrent-ruby (1.0.5) + delivery_boy (0.2.6) + king_konf (~> 0.2) + ruby-kafka (~> 0.5) + dry-configurable (0.7.0) + concurrent-ruby (~> 1.0) + dry-container (0.6.0) + concurrent-ruby (~> 1.0) + dry-configurable (~> 0.1, >= 0.1.3) + dry-core (0.4.6) + concurrent-ruby (~> 1.0) + dry-equalizer (0.2.1) + dry-events (0.1.0) + concurrent-ruby (~> 1.0) + dry-core (~> 0.4) + dry-equalizer (~> 0.2) + dry-inflector (0.1.2) + dry-logic (0.4.2) + dry-container (~> 0.2, >= 0.2.6) + dry-core (~> 0.2) + dry-equalizer (~> 0.2) + dry-monitor (0.1.2) + dry-configurable (~> 0.5) + dry-equalizer (~> 0.2) + dry-events (~> 0.1) + rouge (~> 2.0, >= 2.2.1) + dry-types (0.13.2) + concurrent-ruby (~> 1.0) + dry-container (~> 0.3) + dry-core (~> 0.4, >= 0.4.4) + dry-equalizer (~> 0.2) + dry-inflector (~> 0.1, >= 0.1.2) + dry-logic (~> 0.4, >= 0.4.2) + dry-validation (0.12.0) + concurrent-ruby (~> 1.0) + dry-configurable (~> 0.1, >= 0.1.3) + dry-core (~> 0.2, >= 0.2.1) + dry-equalizer (~> 0.2) + dry-logic (~> 0.4, >= 0.4.0) + dry-types (~> 0.13.1) + envlogic (1.1.0) + dry-inflector (~> 0.1) + i18n (1.0.1) + concurrent-ruby (~> 1.0) + karafka (1.2.4) + activesupport (>= 4.0) + dry-configurable (~> 0.7) + dry-inflector (~> 0.1.1) + dry-monitor (~> 0.1) + dry-validation (~> 0.11) + envlogic (~> 1.0) + multi_json (>= 1.12) + rake (>= 11.3) + require_all (>= 1.4) + ruby-kafka (>= 0.5.3) + thor (~> 0.19) + waterdrop (~> 1.2) + king_konf (0.3.6) + minitest (5.11.3) + multi_json (1.13.1) + null-logger (0.1.5) + rake (12.3.1) + require_all (2.0.0) + rouge (2.2.1) + ruby-kafka (0.6.7) + thor (0.20.0) + thread_safe (0.3.6) + tzinfo (1.2.5) + thread_safe (~> 0.1) + waterdrop (1.2.2) + delivery_boy (~> 0.2) + dry-configurable (~> 0.7) + dry-monitor (~> 0.1) + dry-validation (~> 0.11) + null-logger (~> 0.1) + +PLATFORMS + ruby + +DEPENDENCIES + karafka + +BUNDLED WITH + 1.16.2 diff --git a/app.rb b/app.rb index c42d35a..6c024f5 100644 --- a/app.rb +++ b/app.rb @@ -1 +1,3 @@ -puts 'Hello, World' +require 'karafka' + +puts 'Hello world' diff --git a/app/consumers/application_consumer.rb b/app/consumers/application_consumer.rb new file mode 100644 index 0000000..70aa5bc --- /dev/null +++ b/app/consumers/application_consumer.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# Application consumer from which all Karafka consumers should inherit +# You can rename it if it would conflict with your current code base (in case you're integrating +# Karafka with other frameworks) +ApplicationConsumer = Class.new(Karafka::BaseConsumer) + diff --git a/app/consumers/sections_consumer.rb b/app/consumers/sections_consumer.rb new file mode 100644 index 0000000..a849077 --- /dev/null +++ b/app/consumers/sections_consumer.rb @@ -0,0 +1,8 @@ +require 'karafka' +require_relative 'application_consumer' + +class SectionConsumer < ApplicationConsumer + def consume + puts params #print out the single message received + end +end diff --git a/app/responders/application_responder.rb b/app/responders/application_responder.rb new file mode 100644 index 0000000..b0fecec --- /dev/null +++ b/app/responders/application_responder.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +# Application responder from which all Karafka responders should inherit +# You can rename it if it would conflict with your current code base (in case you're integrating +# Karafka with other frameworks) +class ApplicationResponder < Karafka::BaseResponder + # This method needs to be implemented in each of the responders + # def respond(data) + # respond_to :topic, data.to_json + # end +end diff --git a/karafka.rb b/karafka.rb new file mode 100644 index 0000000..bf9394e --- /dev/null +++ b/karafka.rb @@ -0,0 +1,43 @@ +# frozen_string_literal: true +#require 'karafka' +# Non Ruby on Rails setup +ENV['RACK_ENV'] ||= 'development' +ENV['KARAFKA_ENV'] ||= ENV['RACK_ENV'] +require 'bundler/setup' +Bundler.require(:default, ENV['KARAFKA_ENV']) +Karafka::Loader.load(Karafka::App.root) +require_relative 'app/consumers/sections_consumer.rb' + +# Ruby on Rails setup +# Remove whole non-Rails setup that is above and uncomment the 4 lines below +# ENV['RAILS_ENV'] ||= 'development' +# ENV['KARAFKA_ENV'] = ENV['RAILS_ENV'] +# require ::File.expand_path('../config/environment', __FILE__) +# Rails.application.eager_load! +require 'karafka' + +class KarafkaApp < Karafka::App + setup do |config| + config.kafka.seed_brokers = %w(kafka://kafka:9094) + config.client_id = 'notifications' + config.backend = :inline + config.batch_fetching = false + config.batch_consuming = false + # Uncomment this for Rails app integration + # config.logger = Rails.logger + end + + + after_init do |config| + end + + Karafka.monitor.subscribe(Karafka::Instrumentation::Listener) + KarafkaApp.consumer_groups.draw do + consumer_group :notifications do + topic :section_change do + consumer SectionConsumer #Single message from section_change + end + end + end +end +KarafkaApp.boot! diff --git a/log/development.log b/log/development.log new file mode 100644 index 0000000..94ffb5d --- /dev/null +++ b/log/development.log @@ -0,0 +1,13908 @@ +I, [2018-06-21T19:40:23.787371 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:23.787510 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:23.787830 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:23.788030 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:28.810384 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:28.811550 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:28.811691 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:28.811953 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:28.812279 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:33.814565 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:33.815996 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:33.816153 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:33.816435 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:33.816716 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:38.824198 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:38.825068 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:38.825118 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:38.825186 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:38.825275 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:43.827040 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:43.830493 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:43.830656 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:43.830828 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:43.830951 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:48.832036 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:48.833916 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:48.834173 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:48.834582 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:48.835041 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:50.719964 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:40:50.720191 #1] INFO -- : Stopping Karafka server 1 +E, [2018-06-21T19:40:53.835485 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:53.836751 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:53.836889 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:53.837141 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:53.837615 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:58.838448 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:40:58.839479 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:40:58.839556 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:40:58.839641 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:40:58.839858 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:03.841614 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:03.842967 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:03.843027 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:03.843134 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:03.843196 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:08.843612 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:08.846596 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:08.846698 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:08.846792 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:08.846860 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:13.847284 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:13.848247 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:13.848320 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:13.848414 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:13.848479 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:18.861635 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:18.862974 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:18.863035 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:18.863140 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:18.863217 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:23.863810 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:23.864564 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:23.864612 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:23.864723 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:23.864787 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:28.865074 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:28.877449 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:28.877516 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:28.877585 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:28.877641 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:33.878837 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:33.880332 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:33.880420 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:33.880497 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:33.880632 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:38.881358 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:38.882827 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:38.883002 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:38.883303 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:38.883636 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:43.884327 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:43.885273 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:43.885322 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:43.885550 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:43.885684 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:48.888575 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:41:48.890137 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:41:48.890273 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:41:48.890724 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:48.891135 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:41:50.798263 #1] ERROR -- : Forceful Karafka server 1 stop +I, [2018-06-21T19:41:50.798436 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:41:50.798536 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:41:50.799153 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:41:50.799210 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:41:50.799527 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:41:50.799639 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:41:50.800006 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:41:50.800065 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:41:50.800417 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:41:50.800588 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:41:50.800827 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:41:50.800965 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:41:50.801291 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:43:52.821604 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:43:52.821709 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:43:52.821820 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:43:52.821938 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:43:57.824162 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:43:57.826233 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:43:57.826429 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:43:57.826855 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:43:57.827174 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:02.827844 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:02.829369 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:02.829447 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:02.829750 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:02.830014 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:07.830853 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:07.831812 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:07.831918 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:07.832011 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:07.832201 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:12.837815 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:12.839226 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:12.839333 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:12.839481 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:12.839596 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:17.847364 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:17.848373 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:17.848428 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:17.848510 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:17.848588 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:22.849134 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:22.850355 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:22.850473 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:22.850623 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:22.850764 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:27.851971 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:27.853356 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:27.853422 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:27.853660 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:27.853963 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:28.625242 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:44:28.625588 #1] INFO -- : Stopping Karafka server 1 +E, [2018-06-21T19:44:32.864661 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:32.865942 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:32.866079 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:32.866266 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:32.866469 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:37.870373 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:37.871259 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:37.871334 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:37.871430 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:37.871594 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:42.871807 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:42.872698 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:42.872791 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:42.872874 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:42.872966 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:47.879183 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:47.880600 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:47.880671 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:47.880792 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:47.880879 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:52.884294 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:52.885664 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:52.885745 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:52.885853 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:52.885998 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:57.886617 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:44:57.887601 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:44:57.887681 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:44:57.887765 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:44:57.887826 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:02.888155 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:45:02.889268 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:45:02.889337 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:45:02.889423 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:02.889575 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:07.891295 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:45:07.892809 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:45:07.892888 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:45:07.892965 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:07.893236 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:12.893903 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:45:12.895314 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:45:12.895385 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:45:12.895469 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:12.895623 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:17.896069 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:45:17.897745 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:45:17.897971 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:45:17.898061 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:17.898152 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:22.899024 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:45:22.900619 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:45:22.900742 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:45:22.900829 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:22.900891 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:27.901477 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:45:27.902836 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:45:27.902930 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:45:27.903059 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:27.903378 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:45:28.721832 #1] ERROR -- : Forceful Karafka server 1 stop +I, [2018-06-21T19:45:28.722064 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:45:28.722283 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:45:28.722543 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:45:28.722918 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:45:28.723229 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:45:28.724463 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:45:28.724750 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:45:28.725199 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:45:28.724918 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:45:28.725065 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:45:28.725746 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:45:28.726245 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:47:14.095870 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:14.095967 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:14.096185 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:14.096315 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:19.096683 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:19.097612 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:19.097666 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:19.097739 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:19.097788 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:24.104594 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:24.105934 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:24.106038 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:24.106108 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:24.106165 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:29.107403 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:29.109117 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:29.109303 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:29.109477 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:29.110064 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:34.110804 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:34.112133 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:34.112235 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:34.112314 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:34.112377 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:39.113247 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:39.114256 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:39.114343 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:39.114446 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:39.114535 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:44.117135 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:44.118071 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:44.118136 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:44.118238 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:44.118439 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:49.118893 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:49.120216 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:49.120318 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:49.120397 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:49.120534 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:54.121622 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:54.122702 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:54.122764 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:54.122870 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:54.122971 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:59.123583 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:47:59.130138 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:47:59.130231 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:47:59.130314 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:47:59.130410 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:04.130897 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:04.131972 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:04.132065 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:04.132157 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:04.132299 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:09.138639 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:09.139870 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:09.140010 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:09.140287 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:09.140473 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:14.144062 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:14.145338 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:14.145432 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:14.145694 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:14.145913 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:19.146254 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:19.148442 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:19.148509 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:19.148582 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:19.148697 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:24.149337 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:24.150735 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:24.150872 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:24.151049 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:24.151288 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:29.160545 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:29.162812 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:29.165591 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:29.165783 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:29.165968 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:34.167186 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:34.168167 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:34.168241 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:34.168313 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:34.168373 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:39.172464 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:39.173672 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:39.173745 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:39.173861 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:39.174005 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:44.174647 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:44.175728 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:44.175837 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:44.175953 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:44.176047 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:49.192068 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:49.193919 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:49.194014 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:49.194632 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:49.194978 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:54.196099 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:54.197763 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:54.197851 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:54.197985 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:54.198107 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:59.203003 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:48:59.204600 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:48:59.204691 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:48:59.205060 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:48:59.205144 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:04.205961 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:04.207410 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:04.207470 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:04.207554 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:04.207642 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:09.208075 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:09.210218 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:09.210456 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:09.210850 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:09.210960 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:14.211500 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:14.212875 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:14.213083 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:14.213203 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:14.213295 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:19.214691 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:19.216430 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:19.216602 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:19.217166 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:19.217507 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:24.223513 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:24.229738 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:24.229849 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:24.230247 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:24.230476 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:29.241711 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:29.246276 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:29.246341 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:29.246429 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:29.246560 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:34.247091 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:34.248239 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:34.248286 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:34.248377 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:34.248817 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:39.249422 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:39.251040 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:39.251135 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:39.251234 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:39.251372 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:44.251751 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:44.254004 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:44.254101 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:44.254191 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:44.254466 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:49.257750 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:49.267691 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:49.267808 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:49.268400 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:49.268833 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:54.272610 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:54.274274 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:54.275030 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:54.275165 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:54.275268 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:59.280930 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:49:59.282098 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:49:59.282183 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:49:59.282308 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:49:59.282523 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:04.287660 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:04.288802 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:04.289128 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:04.289580 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:04.289758 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:09.289999 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:09.291146 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:09.291251 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:09.291350 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:09.291471 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:14.291879 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:14.293277 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:14.299555 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:14.299721 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:14.299935 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:19.302457 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:19.303194 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:19.303454 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:19.303551 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:19.303665 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:24.303824 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:24.305163 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:24.305299 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:24.305432 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:24.305541 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:29.306014 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:29.307224 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:29.307302 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:29.307429 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:29.307572 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:34.319900 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:34.320912 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:34.320966 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:34.321076 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:34.321388 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:39.321759 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:39.322964 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:39.323116 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:39.323260 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:39.323385 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:44.326324 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:44.327619 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:44.327716 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:44.327839 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:44.328058 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:49.328275 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:49.329374 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:49.329474 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:49.329718 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:49.330841 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:54.331870 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:54.333217 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:54.333847 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:54.333951 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:54.334029 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:59.334354 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:50:59.335471 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:50:59.335542 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:50:59.335686 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:50:59.335789 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:04.336045 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:04.336860 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:04.336919 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:04.337051 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:04.337139 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:05.403855 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:51:05.403964 #1] INFO -- : Stopping Karafka server 1 +E, [2018-06-21T19:51:09.339800 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:09.340629 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:09.340673 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:09.341047 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:09.341201 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:14.341894 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:14.343424 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:14.343557 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:14.343699 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:14.343831 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:19.344511 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:19.345886 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:19.346269 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:19.346645 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:19.347407 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:24.347852 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:24.348679 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:24.348756 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:24.348859 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:24.349239 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:29.350004 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:29.351003 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:29.351072 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:29.351149 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:29.351269 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:34.354406 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:34.355781 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:34.355920 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:34.356241 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:34.356637 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:39.362157 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:39.364093 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:39.364179 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:39.364417 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:39.364501 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:44.365013 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:44.366320 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:44.366391 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:44.366516 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:44.366646 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:49.367406 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:49.368949 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:49.369063 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:49.369183 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:49.369291 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:54.370806 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:54.371758 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:54.371830 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:54.371976 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:54.372061 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:59.372725 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:51:59.376231 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:51:59.376342 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:51:59.376574 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:51:59.376893 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:52:04.383065 #1] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka::9092: getaddrinfo: Name does not resolve +I, [2018-06-21T19:52:04.384760 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:52:04.384853 #1] INFO -- : Fetching cluster metadata from kafka::9092 +E, [2018-06-21T19:52:04.385174 #1] ERROR -- : Failed to connect to :9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:52:04.385257 #1] ERROR -- : Failed to fetch metadata from kafka::9092: getaddrinfo: Name does not resolve +E, [2018-06-21T19:52:05.489477 #1] ERROR -- : Forceful Karafka server 1 stop +I, [2018-06-21T19:52:05.489722 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:52:05.490209 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:52:05.490374 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:52:05.490493 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:52:05.490577 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:52:05.490690 #1] INFO -- : Stopping Karafka server 1 +I, [2018-06-21T19:52:05.490982 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T19:53:27.961483 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:53:27.961577 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T19:53:27.986226 #1] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-06-21T19:53:27.986493 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T19:53:28.061909 #1] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-06-21T19:53:28.062185 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T19:53:28.065451 #1] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-06-21T19:53:28.065591 #1] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T19:53:28.123441 #1] INFO -- : Joined group `notifications_notifications` with member id `notifications-ab0f9d4e-f9a2-41cc-a098-b3165c517f1f` +I, [2018-06-21T19:53:28.123900 #1] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-06-21T19:53:28.324192 #1] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-06-21T19:53:29.066350 #1] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-06-21T19:53:29.066514 #1] INFO -- : New topics added to target list: section_change +I, [2018-06-21T19:53:29.066552 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T19:53:29.069875 #1] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-06-21T19:53:30.366615 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.93 ms +I, [2018-06-21T19:53:30.366694 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.366798 #1] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-06-21T19:53:30.433684 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:30.433750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.434239 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.434439 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.434711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.434757 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.435153 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.435202 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.435610 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.435657 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.436034 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.436082 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.436508 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:30.436563 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.436916 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.436974 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.437198 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.437265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.437715 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.437765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.438642 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:30.438763 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.439558 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:30.439617 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.440086 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:30.440164 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.440561 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.440613 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.441013 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.441063 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.441477 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.441534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.441774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.441960 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.442649 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:30.442702 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.443721 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:30.446145 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.446740 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.446789 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.447088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.447130 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.447412 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.447453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.447668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.447725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.447945 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.447973 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.448129 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:30.448175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.448307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:30.448555 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.448935 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.448981 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.450111 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:30.450213 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.451681 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-06-21T19:53:30.452014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.462466 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.98 ms +I, [2018-06-21T19:53:30.463718 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.484181 #1] INFO -- : Inline processing of topic section_change with 1 messages took 18.78 ms +I, [2018-06-21T19:53:30.484680 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.488831 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-06-21T19:53:30.491501 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.494163 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-06-21T19:53:30.495252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.498915 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-06-21T19:53:30.499710 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.500505 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:30.500618 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.501825 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:30.501936 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.506895 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.507177 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.508438 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:30.508942 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.509750 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:30.509898 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.516634 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:30.516814 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.520697 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.48 ms +I, [2018-06-21T19:53:30.520848 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.521390 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.521461 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.521899 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.521970 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.522382 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.522435 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.535489 #1] INFO -- : Inline processing of topic section_change with 1 messages took 10.65 ms +I, [2018-06-21T19:53:30.536348 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.552211 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:30.552418 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.553805 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:30.554025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.554710 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:30.554759 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.555066 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.555120 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.555909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:30.556099 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.556965 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:30.557289 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.558534 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:30.559074 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.568964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.61 ms +I, [2018-06-21T19:53:30.569340 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.569909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:30.576360 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.577175 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:30.577261 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.577876 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:30.577933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.578398 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:30.578452 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.578829 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.578933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.579569 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:30.579636 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.580129 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.580199 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.581389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:30.582042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.584519 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-06-21T19:53:30.584606 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.585351 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:30.585405 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.585643 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.585808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.586103 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.586149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.586545 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.586606 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.587312 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:30.587406 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.588893 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:30.590414 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.598475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.95 ms +I, [2018-06-21T19:53:30.598578 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.598902 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.598957 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.599166 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.599196 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.599431 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.599466 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.599813 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.599953 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.600452 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:30.600565 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.600966 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.601048 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.601449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.601492 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.602129 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.602812 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.604346 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-06-21T19:53:30.604399 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.612622 #1] INFO -- : Inline processing of topic section_change with 1 messages took 8.01 ms +I, [2018-06-21T19:53:30.612711 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.613360 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.613465 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.614848 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:30.615627 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.620347 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.31 ms +I, [2018-06-21T19:53:30.620533 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.621266 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:30.621324 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.626071 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.21 ms +I, [2018-06-21T19:53:30.626196 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.635953 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.26 ms +I, [2018-06-21T19:53:30.636149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.636772 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.636998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.637547 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:30.637635 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.638186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.638380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.647894 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:30.648070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.651125 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.69 ms +I, [2018-06-21T19:53:30.651723 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.652658 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:30.657691 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.658444 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:30.658545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.659176 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:30.659255 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.659868 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.659943 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.660483 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:30.660550 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.668626 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.46 ms +I, [2018-06-21T19:53:30.682503 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.683186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:30.683248 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.683707 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.683755 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.684886 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.684965 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.685258 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.685303 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.686460 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:30.686549 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.687324 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:30.689371 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.691006 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-06-21T19:53:30.691114 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.691390 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.691454 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.691687 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.691733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.692101 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.692202 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.692467 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.692504 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.692735 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.692765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.693024 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.693090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.693391 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.693439 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.693764 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.693809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.694198 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.694272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.694557 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.694594 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.694819 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.694871 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.695050 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:30.695095 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.695296 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:30.695341 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.695516 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:30.695562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.695760 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.695789 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.698807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.699089 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.700336 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:30.700446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.701580 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.701686 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.702696 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:30.702937 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.704413 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:30.705286 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.710113 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.5 ms +I, [2018-06-21T19:53:30.710589 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.712751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-06-21T19:53:30.712833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.713585 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:30.733397 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.733995 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:30.734059 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.734407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.734453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.734743 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.734909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.735179 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.735212 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.735485 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.735523 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.735790 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.735833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.736038 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.736070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.736350 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.736387 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.736662 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.736773 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.737083 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.737172 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.737596 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.737636 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.737914 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.737954 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.738242 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.738337 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.738668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.738768 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.739122 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.739174 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.754422 #1] INFO -- : Inline processing of topic section_change with 1 messages took 11.56 ms +I, [2018-06-21T19:53:30.756267 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.756939 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:30.757024 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.757614 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:30.757696 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.758147 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.758230 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.758708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:30.758790 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.759139 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.759208 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.759538 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.759582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.762429 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.74 ms +I, [2018-06-21T19:53:30.762468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.762802 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.762882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.763157 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.763262 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.771891 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.59 ms +I, [2018-06-21T19:53:30.772386 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.773939 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:30.774075 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.775383 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:30.775909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.777440 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:30.777620 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.779470 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-06-21T19:53:30.779561 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.784816 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.784859 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.785116 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:30.785172 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.785336 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:30.785366 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.785577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.785621 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.785813 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.785840 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.786035 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:30.786064 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.786232 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:30.786259 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.786460 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.786490 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.786641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:30.786714 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.786966 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.787013 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.787246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.787276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.787462 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.787546 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.787804 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.787851 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.791100 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:30.791173 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.791546 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.791585 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.791781 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:30.791811 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.792060 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.792092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.792293 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.792324 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.792567 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.792600 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.792823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.792866 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.793168 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.793239 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.793524 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.793566 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.793810 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.793838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.794088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.794118 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.794271 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:30.794296 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.794603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.794654 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.795109 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:30.795153 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.795531 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.795582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.795827 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.795867 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.796363 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.796440 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.796730 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.796773 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.797070 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.797113 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.797620 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.797706 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.798136 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:30.798224 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.798636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.798724 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.799115 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.799209 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.799690 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.799791 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.800243 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.800415 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.800958 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:30.801007 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.801497 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.801543 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.801924 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.801965 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.802248 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.802288 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.802538 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.802605 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.802893 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.802933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.803307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.803393 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.803804 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.803895 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.804194 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.804233 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.804492 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.804529 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.804770 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.804804 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.805000 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.805048 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.805278 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.805309 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.805513 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.805559 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.805772 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.805806 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.806018 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.806064 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.806277 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.806309 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.806503 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.806535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.806873 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.806929 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.807233 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.807352 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.807824 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.807973 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.808535 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:30.808661 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.809472 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:30.809588 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.810008 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.810088 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.810534 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:30.810611 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.810958 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.811034 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.811435 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.811502 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.811941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:30.812010 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.812372 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.812428 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.812727 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.812813 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.813143 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.813192 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.813596 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.813644 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.813924 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.813963 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.814202 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.814252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.818880 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.44 ms +I, [2018-06-21T19:53:30.819021 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.819486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:30.819607 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.820029 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.820096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.820509 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:30.820601 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.820917 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.821032 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.821353 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.821411 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.821746 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.821809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.822125 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.822182 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.822482 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.822552 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.822904 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.822961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.823388 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:30.823446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.823854 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.823966 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.824286 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.824377 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.824753 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.824850 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.825188 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.825252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.825542 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.825588 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.825923 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.825972 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.826273 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.826341 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.826630 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.826715 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.827089 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.827155 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.827617 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:30.827708 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.828093 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.828196 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.828672 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:30.828759 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.829206 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.829272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.829655 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.829730 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.830022 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.830067 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.830471 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.830517 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.830834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.830900 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.831253 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.831338 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.831649 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.831702 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.832014 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.832060 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.832437 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.832490 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.832928 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:30.832988 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.833369 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.833423 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.833846 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.833894 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.834172 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.834206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.834512 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.834573 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.834885 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.834926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.835260 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.835313 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.835574 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.835613 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.835844 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.835888 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.836112 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.836182 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.836397 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.836432 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.836645 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.836704 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.836940 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.836995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.837226 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.837281 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.837516 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.837555 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.837750 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.837817 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.838037 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.838092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.838305 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.838369 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.838619 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.838672 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.838992 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.839069 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.839306 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.839369 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.839591 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.839647 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.839869 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.839919 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.840126 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.840246 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.840506 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.840562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.840771 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.840825 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.841054 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.841109 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.841332 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.841412 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.841646 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.841701 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.841941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.841977 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.842200 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.842256 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.842489 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.842545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.842753 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.842819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.843057 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.843142 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.843426 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.843465 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.843730 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.843800 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.844100 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.844141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.844435 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.844490 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.844719 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.844779 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.845040 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.845100 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.845318 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.845372 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.845597 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.845645 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.845866 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.845905 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.846124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.846157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.846406 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.846438 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.846664 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.846707 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.847057 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.847128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.847428 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.847477 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.847782 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.847880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.848297 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:30.848380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.848691 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.848745 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.849220 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.849286 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.849665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.849729 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.850019 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.850059 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.850273 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.850346 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.850579 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.850639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.850892 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.850951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.851272 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.851327 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.852218 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:30.852605 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.853684 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:30.853799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.854483 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:30.854572 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.855090 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.855185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.855632 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:30.855724 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.856230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.856342 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.856978 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.857103 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.857687 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:30.857758 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.858035 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.858107 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.858348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.858415 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.858716 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.858768 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.859117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.859192 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.859471 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.859510 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.859756 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.859815 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.860210 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.860261 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.860550 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.860626 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.860873 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.860937 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.861179 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.861217 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.861547 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.861605 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.861835 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.861873 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.862135 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.862191 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.862430 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.862484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.862716 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.862813 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.863182 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.863254 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.863738 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:30.863805 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.864124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.864163 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.864392 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.864453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.864683 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.864721 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.864957 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.864992 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.865201 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.865237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.865551 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.865604 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.865828 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.866077 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.871672 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.24 ms +I, [2018-06-21T19:53:30.871758 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.872075 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.872134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.872442 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.872489 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.872739 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.872798 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.873039 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.873147 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.873496 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.873544 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.873890 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:30.873967 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.874475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:30.874540 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.874975 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.875034 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.875464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:30.875522 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.875883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.875972 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.876298 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.876403 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.876731 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.876784 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.877150 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.877221 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.877560 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.877634 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.877990 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.878045 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.878518 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.878649 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.879190 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:30.879263 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.880174 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:30.880279 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.880762 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:30.880853 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.881298 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.881486 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.881871 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.881935 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.882314 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.882374 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.882776 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:30.882854 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.883220 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.883298 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.883685 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.883756 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.884051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.884086 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.884346 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.884383 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.884617 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.884676 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.884909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.884946 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.885186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.885237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.885604 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:30.885647 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.885910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.885966 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.886183 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.886236 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.886489 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.886532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.886925 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.887018 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.890182 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.98 ms +I, [2018-06-21T19:53:30.890241 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.890554 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.890590 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.890766 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:30.890795 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.891019 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.891052 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.891243 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.891271 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.891544 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.891591 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.891847 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.891897 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.892165 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.892195 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.892382 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.892410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.892637 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.892668 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.892834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:30.892882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.893074 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.893121 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.893405 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.893472 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.893791 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.893835 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.894135 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.894175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.894381 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.894410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.894611 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.894640 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.894819 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.894845 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.895021 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:30.909304 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.909660 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.909714 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.909928 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.909951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.910203 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.910234 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.910391 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:30.910413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.910669 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.910710 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.910913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.910994 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.911295 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.911325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.911480 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:30.911506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.911705 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:30.911733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.911907 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.911933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.917809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.77 ms +I, [2018-06-21T19:53:30.918201 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.920498 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.66 ms +I, [2018-06-21T19:53:30.920985 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.922493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:30.926164 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.926584 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.926633 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.927254 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:30.927865 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.928699 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:30.929118 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.929971 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:30.930032 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.930437 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.930487 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.930709 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.930753 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.931193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.931240 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.933414 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:30.933548 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.934464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:30.934565 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.935067 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:30.935134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.935689 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:30.935750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.936218 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.936281 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.936739 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.936990 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.937527 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:30.937583 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.937941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.937989 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.938237 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.938282 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.938956 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:30.939014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.939254 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.939504 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.939742 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.939786 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.940183 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.940230 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.940754 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:30.940835 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.941053 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:30.941097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.941353 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.941399 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.941625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.941669 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.941909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.941954 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.942181 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.942223 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.942453 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:30.942484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.951955 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.36 ms +I, [2018-06-21T19:53:30.952043 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.953949 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-06-21T19:53:30.954044 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.955978 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-06-21T19:53:30.956765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.957295 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.957484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.957771 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.957818 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.958224 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.958272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.958608 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.958653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.959267 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:30.959410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.959777 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.959835 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.960330 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.960529 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.960812 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.961014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.961309 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:30.961476 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.961780 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.961827 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.962246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.962292 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.962689 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:30.962735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.963182 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:30.963237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.963751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:30.963840 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.964598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:30.964661 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.965218 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:30.965278 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.966765 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-06-21T19:53:30.966894 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.967635 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.967695 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.968420 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:30.968504 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.969397 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:30.969478 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.969845 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:30.970111 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.970724 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:30.970863 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.971150 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:30.971218 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.971486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:30.971531 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.971782 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.971846 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.972152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:30.972185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.972468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:30.972507 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.972713 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:30.972792 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.974698 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:30.974757 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.985368 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:30.985534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.985902 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:30.986099 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.986549 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:30.986634 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:30.995147 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:30.995407 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.000165 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.53 ms +I, [2018-06-21T19:53:31.000252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.000638 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.000685 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.000974 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.001025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.001289 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.001333 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.001608 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.001641 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.001824 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:31.001852 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.002045 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.002075 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.002251 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:31.002278 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.002443 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:31.002498 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.002709 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:31.002799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.003024 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:31.003055 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.003370 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:31.003411 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.008080 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.41 ms +I, [2018-06-21T19:53:31.008172 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.009319 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-06-21T19:53:31.009404 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.009936 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.010089 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.024479 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.09 ms +I, [2018-06-21T19:53:31.024617 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.025185 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.025308 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.025736 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.025808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.026156 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:31.026327 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.026768 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.026822 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.027894 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:31.028679 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.029993 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:31.030421 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.030975 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.031151 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.032336 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:31.032461 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.032948 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.032999 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.033786 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.034209 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.035137 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:31.035247 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.035533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:31.035740 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.036530 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.036688 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.036972 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.037209 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.037854 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:31.037906 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.038751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:31.038808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.039126 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.039176 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.039629 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:31.039698 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.040787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:31.040870 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.045225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.23 ms +I, [2018-06-21T19:53:31.045295 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.045652 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.045688 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.045916 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.045946 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.046128 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:31.046160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.046364 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:31.046393 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.046609 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.046674 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.046959 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.047008 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.047385 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.047446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.050838 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.057795 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.058236 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.058277 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.058505 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.058537 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.062250 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-06-21T19:53:31.062737 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.064762 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.74 ms +I, [2018-06-21T19:53:31.064916 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.066864 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-06-21T19:53:31.067814 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.076769 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-06-21T19:53:31.077768 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.078074 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.078108 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.080797 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.53 ms +I, [2018-06-21T19:53:31.080986 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.082402 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:31.082739 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.084064 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-06-21T19:53:31.084258 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.085221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.085449 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.086234 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:31.086420 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.087679 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.088312 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.088898 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.089087 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.090283 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.090397 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.091283 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:31.091424 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.092387 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.092482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.093331 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:31.093465 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.094630 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.094738 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.095306 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.095854 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.096894 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:31.097005 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.097836 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:31.097989 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.099083 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:31.099270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.103988 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.43 ms +I, [2018-06-21T19:53:31.104412 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.105866 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-06-21T19:53:31.106327 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.107439 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.107510 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.107870 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.107910 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.108731 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.109045 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.111014 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.111143 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.111648 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.111719 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.112260 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.112382 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.113374 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.113478 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.114889 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-06-21T19:53:31.115019 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.115665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.116361 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.117010 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.117152 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.118490 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T19:53:31.118682 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.119581 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:31.119840 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.120645 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:31.120756 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.121664 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:31.121853 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.122840 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:31.123017 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.124192 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T19:53:31.124313 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.125375 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:31.125520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.126443 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:31.126564 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.127945 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:31.128090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.130318 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-06-21T19:53:31.130435 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.134543 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.134653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.134960 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.135157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.136184 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:31.136277 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.137154 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:31.137202 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.137801 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.137840 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.138275 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.138311 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.138907 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.138948 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.139653 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:31.139696 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.140470 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:31.140592 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.141639 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:31.141773 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.142728 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:31.142830 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.143928 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:31.144155 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.145262 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.145697 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.146729 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.146851 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.147692 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.148272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.149349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.149474 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.150565 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:31.150704 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.151598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.152187 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.152436 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.152462 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.153158 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:31.153338 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.154480 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:31.154666 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.155752 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:31.155922 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.156682 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.156782 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.157755 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:31.157860 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.158864 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:31.159085 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.160199 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.160716 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.161172 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.165442 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.166237 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:31.166293 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.166950 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:31.166995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.169579 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-06-21T19:53:31.169816 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.170288 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.170327 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.170556 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.170586 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.171249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:31.171305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.171529 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.171569 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.172360 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:31.172875 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.174367 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:31.174526 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.178320 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:31.178752 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.179608 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.180028 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.180717 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.180814 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.181440 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:31.181581 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.182533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:31.182747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.183804 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.184356 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.185582 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:31.185769 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.186977 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.187954 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.190156 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-06-21T19:53:31.195797 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.197774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.197883 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.198425 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.198481 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.198872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.206206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.210787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.51 ms +I, [2018-06-21T19:53:31.211011 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.211609 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.211766 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.212284 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.212397 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.212962 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.213050 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.214359 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:31.214515 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.215641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:31.215866 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.217649 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-06-21T19:53:31.218115 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.219928 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.220064 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.221219 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T19:53:31.221872 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.222888 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:31.223021 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.224976 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:31.225121 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.234677 #1] INFO -- : Inline processing of topic section_change with 1 messages took 8.3 ms +I, [2018-06-21T19:53:31.234853 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.235202 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.235279 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.236063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:31.236097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.236891 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.236929 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.237130 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.237154 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.237335 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.237920 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.238116 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:31.238166 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.238321 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:31.238344 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.239252 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.239325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.239765 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.239822 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.240203 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.240250 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.243826 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:31.244053 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.244558 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.244598 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.245444 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.245549 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.246657 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:31.246818 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.249469 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-06-21T19:53:31.249608 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.250787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-06-21T19:53:31.250931 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.251600 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.251643 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.254062 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-06-21T19:53:31.254702 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.263511 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.53 ms +I, [2018-06-21T19:53:31.263809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.267114 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:31.267180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.268110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.268159 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.275416 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.02 ms +I, [2018-06-21T19:53:31.275639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.276259 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.276368 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.276998 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.277534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.279680 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-06-21T19:53:31.280138 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.282225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:31.282380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.285555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.38 ms +I, [2018-06-21T19:53:31.285708 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.287158 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:31.294944 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.297141 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:31.297326 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.299185 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:31.299651 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.301126 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.301288 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.302468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.304080 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.308449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.97 ms +I, [2018-06-21T19:53:31.308618 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.309314 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:31.309452 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.309941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.310134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.310680 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:31.310809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.311290 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.311345 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.311897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.311988 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.312585 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.313142 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.314377 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:31.314518 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.315378 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:31.315598 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.316610 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.317271 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.322038 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.55 ms +I, [2018-06-21T19:53:31.322162 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.322470 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:31.322496 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.325440 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.86 ms +I, [2018-06-21T19:53:31.325484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.325804 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.325831 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.326014 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:31.326038 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.326256 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:31.326281 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.326438 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:31.326468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.326720 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.326766 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.327053 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.327147 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.327355 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:31.327380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.327546 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:31.327569 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.327774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:31.327799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.328812 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.329129 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.330668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:31.331184 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.332168 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.332301 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.332672 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.332725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.333577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.334659 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.335911 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:31.336257 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.337724 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:31.338207 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.339504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:31.339648 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.340377 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:31.340677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.341393 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:31.341677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.342831 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:31.343218 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.344200 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:31.344291 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.344782 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:31.344832 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.345662 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.345729 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.346291 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:31.346410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.347203 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.347781 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.352829 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.75 ms +I, [2018-06-21T19:53:31.352926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.355041 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-06-21T19:53:31.355301 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.355910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:31.355940 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.356112 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:31.356135 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.356870 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:31.356896 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.357032 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:31.357053 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.357781 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:31.357809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.357997 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:31.358019 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.358145 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-06-21T19:53:31.358643 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.358984 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.359029 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.361055 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.89 ms +I, [2018-06-21T19:53:31.361214 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.365036 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.22 ms +I, [2018-06-21T19:53:31.365492 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.366112 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.366214 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.366592 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.366636 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.367163 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.367295 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.368391 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:31.368534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.369798 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.369956 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.371285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:31.371438 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.373152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:31.373338 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.374554 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-06-21T19:53:31.374666 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.375304 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.375797 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.376808 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.376915 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.378296 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:31.378416 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.384907 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.82 ms +I, [2018-06-21T19:53:31.385627 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.387356 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:31.387627 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.388839 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:31.389346 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.391157 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:31.391335 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.394479 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-06-21T19:53:31.394605 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.395375 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:31.395539 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.396066 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.396111 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.396444 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.396510 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.397350 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:31.397664 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.400396 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.02 ms +I, [2018-06-21T19:53:31.401252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.403778 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-06-21T19:53:31.403938 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.404481 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.404624 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.404982 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:31.405026 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.405440 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.405534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.405908 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.405951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.406335 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.406445 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.408378 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.7 ms +I, [2018-06-21T19:53:31.408667 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.409259 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.409321 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.409678 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.409719 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.410039 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.410151 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.410493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.410551 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.410932 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.410964 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.411283 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.411317 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.411630 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.411666 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.411968 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.412000 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.418367 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.24 ms +I, [2018-06-21T19:53:31.418546 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.419670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:31.420000 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.421414 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:31.421565 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.422229 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:31.422348 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.422961 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:31.423134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.423704 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.423811 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.424270 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.424313 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.424752 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.424801 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.425302 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.425443 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.425971 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:31.426017 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.426491 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.426568 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.427785 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-06-21T19:53:31.429070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.431058 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:31.431206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.431989 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.432202 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.432826 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.432985 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.433653 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.433779 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.434461 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.434606 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.435193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.435319 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.442772 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.443100 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.444118 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:31.444269 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.444740 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.444828 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.445277 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.445380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.445768 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.445868 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.446265 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.446307 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.446747 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.446854 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.447640 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:31.449812 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.456041 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.48 ms +I, [2018-06-21T19:53:31.456338 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.457257 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.457815 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.459091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-06-21T19:53:31.459301 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.460991 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:31.461131 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.462049 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:31.462772 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.463832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:31.463966 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.464807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:31.464949 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.466779 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-06-21T19:53:31.467016 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.471615 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.03 ms +I, [2018-06-21T19:53:31.471802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.472534 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:31.472585 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.473226 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.473398 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.473984 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:31.474096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.474559 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.474672 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.475100 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.475145 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.475834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.475965 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.476859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:31.476976 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.477865 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:31.478033 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.479400 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:31.479793 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.480837 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:31.481382 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.487577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.92 ms +I, [2018-06-21T19:53:31.487653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.493053 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.493126 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.493583 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.493625 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.493960 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.493994 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.494210 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:31.494248 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.494491 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:31.494521 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.494733 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:31.494761 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.501933 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.28 ms +I, [2018-06-21T19:53:31.502020 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.503230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.503390 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.504745 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:31.504882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.505954 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:31.506092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.507722 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.507952 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.520350 #1] INFO -- : Inline processing of topic section_change with 1 messages took 12.03 ms +I, [2018-06-21T19:53:31.520566 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.521743 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.521902 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.522496 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:31.522664 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.523757 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:31.523917 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.525244 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:31.525379 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.525972 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.526116 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.527046 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:31.527219 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.532809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.533218 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.534421 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.534571 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.536141 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:31.536888 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.538350 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-06-21T19:53:31.538610 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.540324 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-06-21T19:53:31.540473 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.541788 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:31.541927 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.550364 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.12 ms +I, [2018-06-21T19:53:31.550864 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.557408 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.95 ms +I, [2018-06-21T19:53:31.557563 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.559394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:31.559803 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.564834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.3 ms +I, [2018-06-21T19:53:31.564941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.565829 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:31.565923 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.567407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.567951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.569115 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.569193 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.570073 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.570120 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.570986 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:31.571049 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.571658 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:31.571859 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.579398 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:31.579877 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.581442 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-06-21T19:53:31.581510 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.581844 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.581933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.582439 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.583009 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.585238 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-06-21T19:53:31.585526 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.590842 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:31.591002 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.592402 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:31.592530 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.593464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:31.593642 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.594744 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T19:53:31.594950 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.600509 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.19 ms +I, [2018-06-21T19:53:31.600673 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.601582 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:31.601762 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.602269 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.602322 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.602919 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.603057 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.603607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:31.603731 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.604253 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.604443 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.604900 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.604973 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.605392 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.605464 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.605903 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.605989 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.606299 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.606413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.606837 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.606987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.608450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-06-21T19:53:31.608593 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.609118 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.609251 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.609719 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.609765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.610152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.610233 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.610864 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.611472 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.612133 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.612256 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.613186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:31.613346 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.614433 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.614580 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.614976 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.615018 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.615394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.615471 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.615804 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.616426 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.617055 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:31.617216 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.617976 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:31.618107 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.619226 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:31.619388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.620468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.620591 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.621154 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.621242 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.621820 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.622456 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.623086 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.623220 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.624501 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:31.624671 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.625302 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.625417 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.626438 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:31.626557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.633243 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.33 ms +I, [2018-06-21T19:53:31.633464 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.634227 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:31.634275 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.635664 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-06-21T19:53:31.635739 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.635994 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:31.636027 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.636754 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:31.636836 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.637268 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:31.637378 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.637970 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.638084 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.639711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-06-21T19:53:31.639935 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.640456 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.640570 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.641313 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:31.641407 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.641969 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.642056 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.642723 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.642817 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.643449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.643507 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.643764 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:31.643795 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.648595 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.648708 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.649164 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.649300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.650009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.650146 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.650725 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.650891 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.651379 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.651600 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.652124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.652227 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.652796 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.652908 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.653445 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.653587 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.656802 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.07 ms +I, [2018-06-21T19:53:31.657017 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.664046 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:31.664215 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.664636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.664670 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.665030 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.665065 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.665640 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:31.665674 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.665873 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:31.666024 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.666559 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.666619 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.667053 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.667098 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.667871 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:31.667944 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.669965 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.48 ms +I, [2018-06-21T19:53:31.670435 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.671523 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.672069 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.672468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.673061 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.674375 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.675105 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.675559 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.675642 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.676202 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.676247 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.677186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:31.677300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.677668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:31.678087 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.678426 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:31.679101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.679774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:31.680072 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.680699 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:31.680813 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.681607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:31.681724 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.683261 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.683426 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.684619 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.684750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.686025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.686200 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.687745 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-06-21T19:53:31.688229 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.695241 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:31.695356 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.695708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:31.695779 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.696258 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:31.696294 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.696886 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:31.696920 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.697614 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.697655 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.698118 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:31.698157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.698682 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:31.698778 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.699654 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:31.699723 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.700734 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:31.700802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.702185 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-06-21T19:53:31.702261 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.702760 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.702816 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.704238 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-06-21T19:53:31.704314 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.704943 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:31.705071 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.705875 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:31.706110 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.707324 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.707747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.709805 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:31.709951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.710995 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:31.711106 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.712182 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.712282 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.713184 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.713324 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.714709 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.714827 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.715378 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.715689 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.716716 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:31.716851 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.717755 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:31.717874 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.718937 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:31.719062 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.725510 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.8 ms +I, [2018-06-21T19:53:31.725564 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.725836 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:31.725869 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.726077 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:31.726106 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.726383 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.726414 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.726771 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.726820 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.727219 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.727275 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.727603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.727753 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.728102 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.728216 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.729361 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:31.729777 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.731606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-06-21T19:53:31.731768 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.732967 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.733141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.737246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.56 ms +I, [2018-06-21T19:53:31.737786 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.738434 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:31.738557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.739318 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:31.739474 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.739957 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.740003 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.740453 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:31.740543 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.741589 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:31.741715 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.742154 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.742274 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.743316 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.743481 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.744272 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.744354 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.745286 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:31.745430 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.745844 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:31.745889 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.746900 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:31.747141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.748445 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:31.748633 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.753041 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-06-21T19:53:31.754628 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.757073 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.15 ms +I, [2018-06-21T19:53:31.757188 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.757725 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.757833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.758262 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.758366 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.758938 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.759187 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.760370 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:31.760537 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.763324 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.47 ms +I, [2018-06-21T19:53:31.763584 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.764223 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:31.764349 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.764832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.764955 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.765588 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.765695 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.766263 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:31.766394 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.767610 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.767821 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.769256 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.769550 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.771168 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-06-21T19:53:31.771296 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.772083 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.772183 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.773039 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.773257 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.775137 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:31.775278 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.775807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.775926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.777044 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:31.777168 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.777832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:31.778532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.779650 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.779776 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.783875 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:31.786777 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.788603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.788781 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.790649 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:31.790800 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.792193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:31.792644 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.793694 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:31.794232 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.795917 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-06-21T19:53:31.796247 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.797271 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:31.799404 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.800823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:31.801014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.801617 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.801789 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.802735 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:31.803180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.804769 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-06-21T19:53:31.804961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.812504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.6 ms +I, [2018-06-21T19:53:31.812734 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.814281 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.814448 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.815183 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.815297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.816022 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.816249 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.817395 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:31.817599 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.818528 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:31.818733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.819556 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:31.819728 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.820341 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:31.820474 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.825373 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.87 ms +I, [2018-06-21T19:53:31.826289 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.831029 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.15 ms +I, [2018-06-21T19:53:31.831920 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.833122 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:31.834825 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.835398 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.835510 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.835922 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.835968 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.836377 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.836448 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.837246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.837335 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.838348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:31.838487 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.839287 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:31.839788 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.841923 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-06-21T19:53:31.842092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.842638 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.842821 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.843447 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:31.843594 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.845314 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:31.845454 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.845995 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.846147 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.848368 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.849976 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.856473 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-06-21T19:53:31.859557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.861887 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:31.862792 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.864314 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:31.864437 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.866364 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T19:53:31.866524 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.868961 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.96 ms +I, [2018-06-21T19:53:31.869734 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.875462 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:31.875608 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.876169 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.876317 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.876817 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.876927 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.877932 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:31.878082 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.878974 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:31.879255 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.887960 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:31.888083 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.891044 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.7 ms +I, [2018-06-21T19:53:31.891185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.892933 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.42 ms +I, [2018-06-21T19:53:31.893082 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.896295 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.896531 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.897177 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.897288 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.898451 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:31.898582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.901885 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.54 ms +I, [2018-06-21T19:53:31.902014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.903559 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-06-21T19:53:31.903959 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.905929 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-06-21T19:53:31.906838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.908161 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:31.909208 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.910906 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.911101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.917066 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:31.917400 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.918248 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.918493 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.920051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:31.920122 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.920885 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:31.921393 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.921915 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:31.921978 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.923110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:31.923165 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.923528 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.923562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.924068 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:31.924435 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.925389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:31.925483 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.925846 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:31.925894 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.926676 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:31.926798 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.928641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-06-21T19:53:31.929538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.930921 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:31.931256 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.932968 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:31.933121 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.934204 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-06-21T19:53:31.934328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.935274 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:31.935523 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.940987 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.88 ms +I, [2018-06-21T19:53:31.941091 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.941974 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:31.942078 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.947597 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.29 ms +I, [2018-06-21T19:53:31.947704 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.949834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-06-21T19:53:31.950620 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.951695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:31.951745 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.952598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:31.952725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.953854 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:31.954488 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.955477 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:31.955573 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.956030 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:31.956590 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.957796 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T19:53:31.957965 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.960158 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.64 ms +I, [2018-06-21T19:53:31.960305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.961344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:31.961850 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.962920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:31.963068 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.964392 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T19:53:31.964537 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.965403 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:31.965824 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.966261 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:31.966917 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.967922 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:31.968111 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.969732 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-06-21T19:53:31.969987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.971398 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:31.971884 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.972552 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.972862 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.977910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.83 ms +I, [2018-06-21T19:53:31.977983 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.978883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:31.978935 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.979888 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:31.979945 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.980596 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:31.980921 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.981380 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:31.981929 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.982224 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:31.982270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.983409 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-06-21T19:53:31.983456 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.983692 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:31.983722 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.984488 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:31.984547 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.985392 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:31.985951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.987484 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:31.987652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.989503 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:31.989780 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.991691 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:31.992439 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.993767 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-06-21T19:53:31.993828 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.995202 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:31.996019 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.996964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:31.997461 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:31.998531 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:31.999397 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.000477 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.000641 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.001745 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:32.002429 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.003360 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.003596 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.011149 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.19 ms +I, [2018-06-21T19:53:32.012036 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.012952 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:32.013115 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.014829 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.014961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.015404 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.015510 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.016285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.016970 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.018049 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:32.018257 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.020042 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:32.020487 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.021980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-06-21T19:53:32.022472 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.023747 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:32.024003 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.025441 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:32.025998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.028637 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.28 ms +I, [2018-06-21T19:53:32.029562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.031547 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.36 ms +I, [2018-06-21T19:53:32.031683 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.032178 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.032466 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.039363 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.63 ms +I, [2018-06-21T19:53:32.039657 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.040394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:32.040557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.041127 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.041204 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.041673 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.041780 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.042147 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.042500 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.043530 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:32.043606 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.044623 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:32.044684 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.046104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:32.046269 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.054232 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.44 ms +I, [2018-06-21T19:53:32.054436 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.059244 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.33 ms +I, [2018-06-21T19:53:32.059750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.060357 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.060506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.060947 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.061095 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.061498 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.061545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.062625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:32.062717 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.066104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.19 ms +I, [2018-06-21T19:53:32.066175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.066810 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.066878 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.068389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.19 ms +I, [2018-06-21T19:53:32.068705 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.076417 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.45 ms +I, [2018-06-21T19:53:32.076576 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.077195 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.077258 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.078580 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:32.078669 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.080104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-06-21T19:53:32.080185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.081078 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:32.081823 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.082811 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:32.082953 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.084403 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:32.084530 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.085793 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:32.085924 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.087644 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-06-21T19:53:32.088612 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.090088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.18 ms +I, [2018-06-21T19:53:32.090379 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.092446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T19:53:32.092557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.093412 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.093949 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.095072 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:32.095182 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.096148 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:32.096332 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.097196 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.098051 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.098579 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.098684 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.099867 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.104553 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.106413 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:32.106507 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.107432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:32.108225 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.109581 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:32.110691 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.111964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T19:53:32.112138 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.114411 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:32.114545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.115154 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.115253 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.115920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.115998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.116748 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:32.117570 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.118479 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.118649 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.120008 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:32.120220 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.121234 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:32.121347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.122093 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.122388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.123702 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:32.123795 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.124751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:32.125499 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.126145 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.126409 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.128619 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.53 ms +I, [2018-06-21T19:53:32.128747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.130441 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:32.130572 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.136702 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:32.136972 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.137809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:32.137951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.138964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.139019 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.139659 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:32.139698 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.140520 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.140635 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.142031 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:32.142180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.143118 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:32.143982 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.145011 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:32.145126 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.146446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-06-21T19:53:32.146557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.148158 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-06-21T19:53:32.148362 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.149495 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-06-21T19:53:32.149961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.150994 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:32.151042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.152063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:32.152199 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.153079 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:32.153333 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.154490 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.154596 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.155575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:32.155725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.157625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-06-21T19:53:32.157747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.158741 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:32.158831 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.160192 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:32.160325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.166562 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.9 ms +I, [2018-06-21T19:53:32.167142 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.169808 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-06-21T19:53:32.169910 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.170666 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:32.171097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.172105 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:32.172562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.173809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:32.173976 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.175300 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:32.175498 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.177194 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-06-21T19:53:32.177324 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.177939 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.178639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.179230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.179310 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.180542 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.180669 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.181171 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.181528 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.182647 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.182797 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.184149 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:32.184280 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.184832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.185096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.186121 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.186562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.190590 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-06-21T19:53:32.190844 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.192072 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:32.195433 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.197475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.197514 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.198402 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.198431 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.198687 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.198714 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.198895 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.199635 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.199894 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.199919 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.200228 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.200269 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.200504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.201171 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.201474 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.201501 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.201773 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.201799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.201983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:32.202006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.202851 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.202887 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.203802 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:32.203951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.204980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.205677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.206276 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.206382 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.207910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-06-21T19:53:32.208370 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.211310 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.211428 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.211884 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.212038 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.212544 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.212669 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.213293 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.213650 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.214899 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T19:53:32.215063 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.215635 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.216128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.216752 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.216888 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.218141 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.218328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.218977 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.219935 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.220616 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.220705 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.221289 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.221896 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.229263 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.05 ms +I, [2018-06-21T19:53:32.229573 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.230464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:32.230535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.231624 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T19:53:32.231668 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.232859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.233350 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.234394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.234497 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.235884 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:32.236030 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.236486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.236573 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.237088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:32.237150 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.237839 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.237901 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.238897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.239039 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.239796 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.240022 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.240867 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:32.241040 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.242367 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.242475 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.243977 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:32.244164 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.244878 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.244981 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.246373 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.246487 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.247226 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:32.248050 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.248759 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.249407 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.249936 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.250072 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.251187 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:32.251300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.251757 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.251803 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.260140 #1] INFO -- : Inline processing of topic section_change with 1 messages took 8.06 ms +I, [2018-06-21T19:53:32.260265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.263315 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.81 ms +I, [2018-06-21T19:53:32.263442 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.264004 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.264101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.264657 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.264766 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.265422 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.266422 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.269278 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:32.269726 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.271254 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-06-21T19:53:32.271509 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.274152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.15 ms +I, [2018-06-21T19:53:32.274311 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.275793 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-06-21T19:53:32.275931 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.278556 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-06-21T19:53:32.278674 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.279740 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:32.279931 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.281029 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:32.281137 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.281693 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.281799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.282453 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.282551 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.287174 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.289675 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.291243 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:32.291994 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.292781 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.292899 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.293823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:32.294097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.295070 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.295505 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.296624 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:32.296777 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.301005 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.301133 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.304371 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.7 ms +I, [2018-06-21T19:53:32.304503 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.304945 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.305059 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.305446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.305560 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.305896 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.305936 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.306333 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.306413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.307442 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.308112 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.308823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.309028 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.310233 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:32.310573 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.311524 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.311639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.312131 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.312222 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.313145 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.313270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.313867 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.314035 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.314897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.315006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.315529 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:32.316104 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.316693 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.316764 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.321434 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-06-21T19:53:32.321564 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.322272 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:32.322405 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.323739 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:32.323911 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.324391 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.324478 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.325097 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.325177 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.325803 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:32.325845 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.326615 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.326818 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.332348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:32.332602 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.334614 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:32.334730 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.335244 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.335346 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.336076 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.336130 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.337090 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.337200 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.337785 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.337982 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.339504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:32.339708 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.341101 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:32.341238 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.342159 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.342265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.343644 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-06-21T19:53:32.343855 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.344779 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.344961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.346146 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.346260 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.347604 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:32.353269 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.354076 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.354529 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.355808 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-06-21T19:53:32.355945 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.357239 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:32.357369 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.357909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.358025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.358964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:32.359084 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.359908 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:32.360116 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.360995 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:32.361090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.362169 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.362265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.362765 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.363150 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.364193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.364314 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.364957 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.365161 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.366333 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-06-21T19:53:32.366452 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.367218 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.367417 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.368682 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:32.368790 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.369849 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:32.369993 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.370730 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:32.370867 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.372026 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.372149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.372609 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.372752 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.373665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.374219 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.374801 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:32.374909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.375821 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:32.375920 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.376788 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:32.377273 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.384798 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.19 ms +I, [2018-06-21T19:53:32.385009 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.386127 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:32.386173 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.386548 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.386623 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.387632 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:32.387683 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.388199 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.388250 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.388838 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.389027 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.390050 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.390222 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.390966 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:32.391133 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.391563 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.391689 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.392116 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.392161 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.392610 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.392710 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.393137 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.393287 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.394090 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.394268 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.394912 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.395114 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.395555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:32.395664 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.402327 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.46 ms +I, [2018-06-21T19:53:32.402500 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.407154 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-06-21T19:53:32.407328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.408393 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.408451 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.413852 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:32.413941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.415318 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.415371 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.415815 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.417103 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.417637 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.417824 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.421203 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.73 ms +I, [2018-06-21T19:53:32.421384 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.422214 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:32.422956 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.424967 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:32.425084 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.425664 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.425709 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.428001 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.428134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.428671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.429522 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.431031 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.27 ms +I, [2018-06-21T19:53:32.431159 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.431627 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.431672 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.433268 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-06-21T19:53:32.433506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.436234 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.29 ms +I, [2018-06-21T19:53:32.436304 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.436545 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.436576 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.436749 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:32.436777 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.436918 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:32.436981 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.437122 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:32.437149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.437307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:32.437333 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.437510 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.437538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.437700 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:32.437726 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.437876 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:32.437924 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.438119 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:32.438146 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.438300 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:32.438327 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.438506 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.438535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.438671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:32.438715 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.438854 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:32.438880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.459982 #1] INFO -- : Inline processing of topic section_change with 1 messages took 17.78 ms +I, [2018-06-21T19:53:32.460219 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.460673 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.460810 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.461170 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.461217 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.461453 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:32.461516 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.461860 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.461906 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.462232 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.462278 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.462663 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.462712 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.465935 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.79 ms +I, [2018-06-21T19:53:32.466956 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.470483 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.54 ms +I, [2018-06-21T19:53:32.471941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.484767 #1] INFO -- : Inline processing of topic section_change with 1 messages took 11.18 ms +I, [2018-06-21T19:53:32.485259 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.485845 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:32.485913 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.491976 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.86 ms +I, [2018-06-21T19:53:32.492106 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.493286 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:32.494642 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.495367 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:32.495776 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.497829 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-06-21T19:53:32.498731 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.512993 #1] INFO -- : Inline processing of topic section_change with 1 messages took 12.58 ms +I, [2018-06-21T19:53:32.514119 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.524355 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.94 ms +I, [2018-06-21T19:53:32.524485 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.524993 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.525042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.525423 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.525471 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.525780 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:32.525838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.526135 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.526203 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.528567 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.94 ms +I, [2018-06-21T19:53:32.529425 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.534039 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.24 ms +I, [2018-06-21T19:53:32.535347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.545118 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.56 ms +I, [2018-06-21T19:53:32.545182 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.549957 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.550020 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.550457 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.550506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.550945 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.550994 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.551224 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:32.551311 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.551519 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.551563 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.551832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.551895 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.555379 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.35 ms +I, [2018-06-21T19:53:32.555468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.556031 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.556166 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.556722 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.556801 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.557191 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.557241 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.557674 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.557728 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.558189 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.558297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.558741 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.558850 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.559401 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.559533 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.561085 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.561202 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.561911 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:32.561972 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.562376 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.562436 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.562822 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.562905 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.563193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.563236 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.565201 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-06-21T19:53:32.565391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.566035 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.566119 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.567735 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.567882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.568205 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.568258 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.568709 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.568759 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.569276 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.569485 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.572536 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.83 ms +I, [2018-06-21T19:53:32.572700 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.574196 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-06-21T19:53:32.574280 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.574731 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.574781 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.575177 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.575220 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.575476 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.575509 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.575708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:32.575735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.575969 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.575998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.576227 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.576253 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.576694 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.576741 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.577141 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.577191 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.577618 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.577665 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.582774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.98 ms +I, [2018-06-21T19:53:32.583049 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.583787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:32.583974 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.584544 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.584603 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.585120 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.585181 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.585702 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.585764 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.586288 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.586378 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.587152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.587238 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.587784 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.587860 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.588308 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.588580 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.589305 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.589512 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.590330 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:32.590547 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.591476 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.591544 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.592064 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.592124 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.592630 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.592678 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.593090 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.593144 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.593559 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.593609 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.593942 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.593975 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.596025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-06-21T19:53:32.596099 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.596611 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.596664 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.598745 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.97 ms +I, [2018-06-21T19:53:32.598800 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.599669 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:32.599743 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.600349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.600534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.601048 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:32.601101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.601540 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.601596 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.605122 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.37 ms +I, [2018-06-21T19:53:32.605201 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.605748 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.605797 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.606238 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.606285 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.606818 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.606870 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.607625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.607696 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.608342 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.608537 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.609062 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.609134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.609637 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.609695 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.615326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.28 ms +I, [2018-06-21T19:53:32.615389 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.615704 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.615802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.616071 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.616096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.616420 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:32.616521 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.617007 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.617090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.618864 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.46 ms +I, [2018-06-21T19:53:32.619291 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.620843 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:32.621330 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.635579 #1] INFO -- : Inline processing of topic section_change with 1 messages took 12.63 ms +I, [2018-06-21T19:53:32.637858 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.641385 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:32.641939 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.644166 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-06-21T19:53:32.646087 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.650964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-06-21T19:53:32.651090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.651413 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.651443 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.651663 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:32.651687 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.651940 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:32.651990 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.652202 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.652225 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.652495 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.652533 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.652915 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.652968 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.653284 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.653318 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.653721 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.653759 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.654184 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.654219 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.654515 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.654546 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.654775 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.654802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.655049 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.655078 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.655287 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.655314 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.676607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 20.84 ms +I, [2018-06-21T19:53:32.676735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.677358 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.677527 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.678084 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:32.678152 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.678663 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.678774 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.679198 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.679263 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.679853 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.679945 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.685212 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.07 ms +I, [2018-06-21T19:53:32.685290 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.685734 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.685792 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.686176 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.686233 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.686554 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.686602 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.690006 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.24 ms +I, [2018-06-21T19:53:32.690209 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.691514 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-06-21T19:53:32.691574 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.691919 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.692000 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.692916 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:32.699254 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.699892 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.700094 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.700851 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:32.700924 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.701492 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.701656 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.702160 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.702221 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.702760 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.702826 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.703423 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.703611 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.704066 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.704140 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.704792 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.704854 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.705446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:32.705677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.707156 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.03 ms +I, [2018-06-21T19:53:32.707790 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.709147 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:32.709211 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.709544 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.709958 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.721013 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.94 ms +I, [2018-06-21T19:53:32.721118 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.721458 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.721504 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.721803 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.721850 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.722108 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.722141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.722347 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.722375 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.722609 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.722642 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.722862 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.722904 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.724834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.724904 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.725203 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.725253 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.725525 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.725600 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.728409 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.66 ms +I, [2018-06-21T19:53:32.728501 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.729262 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.729342 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.736989 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.42 ms +I, [2018-06-21T19:53:32.737291 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.737785 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.737837 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.738261 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.738436 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.739450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.739651 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.740358 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:32.740421 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.740895 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.740980 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.741834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.741942 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.743538 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:32.743808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.744467 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.744516 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.745512 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:32.745622 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.746086 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.746212 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.756247 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.756448 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.757141 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.757258 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.757831 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.758187 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.758729 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.759200 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.759731 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.760495 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.761299 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:32.761359 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.762253 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:32.762306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.766800 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.33 ms +I, [2018-06-21T19:53:32.767117 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.773705 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.51 ms +I, [2018-06-21T19:53:32.774337 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.777082 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.08 ms +I, [2018-06-21T19:53:32.784465 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.785271 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:32.785334 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.787186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:32.788544 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.790950 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.93 ms +I, [2018-06-21T19:53:32.791452 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.794883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:32.795987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.799425 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-06-21T19:53:32.799591 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.802452 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-06-21T19:53:32.802538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.807900 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.8 ms +I, [2018-06-21T19:53:32.808053 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.808555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.808662 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.808962 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.809000 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.809344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:32.809391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.809655 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.809686 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.809926 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.809959 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.810169 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:32.810199 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.810433 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.810465 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.810670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:32.810701 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.810990 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.811026 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.811252 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:32.811341 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.811588 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.811621 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.811874 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:32.811913 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.812130 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:32.812160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.812903 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.825684 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.827557 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:32.827940 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.829071 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:32.829926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.830905 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.832546 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.833156 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:32.833988 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.834890 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.835163 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.836095 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:32.836346 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.837179 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.837325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.838193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:32.838386 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.839172 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.839208 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.839418 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:32.839443 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.839665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:32.839693 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.839839 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:32.839880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.840020 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:32.840041 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.840178 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-06-21T19:53:32.840199 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.840409 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:32.840438 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.840606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:32.840629 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.840777 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:32.840799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.840990 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:32.841014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.841148 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:32.841170 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.841316 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-06-21T19:53:32.841578 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.841920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:32.841968 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.842149 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.842172 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.842639 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.842666 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.843065 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.843122 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.843605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.843773 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.845338 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-06-21T19:53:32.845987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.846595 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.846657 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.847215 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.847325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.854914 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.66 ms +I, [2018-06-21T19:53:32.855532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.864373 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.864629 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.865267 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.865419 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.866129 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:32.866250 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.868668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.63 ms +I, [2018-06-21T19:53:32.875880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.876816 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.876976 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.877545 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.877603 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.878051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:32.878733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.879635 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.879750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.880523 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.880702 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.881187 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.881243 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.881659 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.881723 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.882110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.884308 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.885108 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.885242 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.885767 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.885892 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.886306 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.886470 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.887741 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:32.888941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.891277 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.891405 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.892296 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.892406 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.892989 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.893133 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.894127 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.894259 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.894815 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.894916 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.895658 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:32.895716 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.896259 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.896305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.896720 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.896823 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.897221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.897284 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.897669 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.897729 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.898115 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:32.898215 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.898527 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.898589 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.898883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:32.899073 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.899605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:32.899685 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.900218 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.900347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.900851 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.900976 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.901350 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.901388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.901882 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.902037 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.902592 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.902713 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.903219 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.903315 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.903986 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.904112 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.904907 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:32.905072 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.905806 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:32.905860 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.906926 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.907138 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.909564 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:32.909689 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.910229 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.910270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.910790 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.910895 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.911363 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.911404 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.911887 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.911930 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.912698 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:32.912848 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.914388 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-06-21T19:53:32.914589 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.915583 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:32.915763 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.916393 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:32.916436 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.916986 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.917078 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.917577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.917664 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.918296 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.918459 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.919616 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:32.919785 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.920566 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:32.920671 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.921446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:32.921572 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.922308 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.922426 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.922913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.922992 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.923481 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.923611 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.924200 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.924381 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.925545 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:32.925739 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.926486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:32.926725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.927743 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:32.927898 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.928700 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.928821 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.929517 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:32.929557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.929981 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:32.930031 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.930484 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:32.930571 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.931117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.931168 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.934418 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.934505 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.935184 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.935228 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.935720 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:32.935833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.936575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.936695 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.937302 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.937385 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.937792 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.937904 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.938365 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:32.938462 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.938986 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.939067 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.939647 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:32.939765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.948470 #1] INFO -- : Inline processing of topic section_change with 1 messages took 8.52 ms +I, [2018-06-21T19:53:32.948669 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.949526 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:32.949677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.950356 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:32.950459 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.954958 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.955141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.955739 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:32.955781 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.957639 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:32.957823 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.959361 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:32.962895 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.964171 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-06-21T19:53:32.965530 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.966241 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:32.966554 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.975964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:32.976122 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.976949 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:32.977141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.977952 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:32.978077 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.978668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:32.978823 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.980127 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:32.980276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.981468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T19:53:32.986677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.987378 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:32.988251 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.988921 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:32.988966 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.989285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:32.989311 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.989552 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:32.989575 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.989799 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:32.989852 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.991750 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:32.991793 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.993708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-06-21T19:53:32.993782 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.996948 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:32.997103 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:32.997621 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:32.997659 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.000427 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.65 ms +I, [2018-06-21T19:53:33.000477 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.001533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:33.001755 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.003015 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.007933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.013002 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.75 ms +I, [2018-06-21T19:53:33.013230 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.014225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:33.014367 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.015431 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:33.015513 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.016115 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.016195 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.017030 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.017147 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.017786 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.017881 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.018371 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.018412 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.018857 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.018941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.019285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.019332 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.019724 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.023719 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.024885 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.025091 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.025670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.025802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.026035 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:33.026059 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.026576 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.026653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.027181 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.027314 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.027711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.028221 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.028545 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.028577 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.028861 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.028887 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.029062 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:33.029101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.029650 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.029704 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.030098 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.030146 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.030442 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.030474 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.030784 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.030817 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.031160 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.031187 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.031401 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.031422 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.036823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.26 ms +I, [2018-06-21T19:53:33.036987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.038082 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.038231 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.038728 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.038873 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.039418 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.039542 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.039945 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.040094 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.040546 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.040681 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.041110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.041200 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.041741 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.041795 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.042304 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.042587 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.043164 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.043622 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.050598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:33.050684 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.051124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.051187 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.051551 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.051581 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.051761 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:33.051785 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.051946 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:33.051969 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.052161 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:33.052186 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.052315 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:33.052358 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.052483 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-06-21T19:53:33.052546 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.052709 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:33.052732 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.052883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:33.052905 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.053104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:33.053163 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.053374 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:33.053431 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.053662 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.053727 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.054365 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.054468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.054887 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:33.054923 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.055496 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.055594 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.056064 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.056206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.056658 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.056794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.057290 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.057388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.058444 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.059039 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.059850 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.060067 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.060812 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.060891 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.061420 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.061583 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.062197 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.062333 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.062832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.062967 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.063597 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.063794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.064514 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.064644 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.065284 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:33.065405 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.066011 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.066132 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.066845 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.066985 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.067826 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.067984 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.068858 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.068988 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.069703 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.069800 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.070760 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.071066 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.072934 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-06-21T19:53:33.073060 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.073778 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.073940 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.074592 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.074652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.075329 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.075411 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.075983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.076188 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.077009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:33.077180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.078289 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.078437 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.079342 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:33.079431 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.079950 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.079994 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.080408 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.080450 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.080847 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.080961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.081383 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.081492 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.081894 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.081980 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.082427 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.082495 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.082884 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.082928 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.083285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.083408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.083977 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.084112 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.084805 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.084929 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.085610 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.085727 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.086399 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.086623 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.087794 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:33.087961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.088574 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.088674 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.089369 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.089448 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.090037 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.090162 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.090710 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.090804 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.091388 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.091566 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.092610 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:33.092745 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.093363 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.093453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.094186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.094317 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.095480 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:33.095647 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.096364 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.096479 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.096992 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.097043 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.097508 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.097548 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.097913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.097948 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.098325 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.098360 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.098758 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.098797 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.099471 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.099579 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.100481 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.100628 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.101344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.101487 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.101958 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.101998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.102249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.102275 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.102488 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.102533 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.102742 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.102770 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.102941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:33.102964 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.103241 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.103283 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.103777 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:33.103875 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.104238 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.104328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.104763 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.104791 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.105431 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.105531 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.105912 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.105975 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.106305 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.106439 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.107665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:33.107826 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.109867 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-06-21T19:53:33.110028 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.110724 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.110787 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.111577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.111641 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.112269 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.112391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.113076 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.113181 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.113726 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.113821 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.114425 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.114499 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.115054 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.115103 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.115727 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.115808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.116384 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.116448 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.117094 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.117184 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.117751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.117804 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.118357 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.118452 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.119089 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.119204 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.119726 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.119802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.120268 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.120314 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.120823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.120870 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.121336 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.121448 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.121884 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.121952 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.124355 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.2 ms +I, [2018-06-21T19:53:33.124410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.124941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.125003 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.125381 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.125488 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.125800 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.125898 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.126274 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.126336 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.127038 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.127111 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.130183 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-06-21T19:53:33.130316 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.130721 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.130863 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.131276 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.131367 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.131655 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.131763 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.132249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.132360 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.132772 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.132886 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.134883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.134967 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.135442 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.135506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.135980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.136033 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.136287 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.136405 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.136869 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.136933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.137313 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.137407 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.137790 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.137856 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.138229 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.138271 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.138647 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.138711 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.139177 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.139345 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.139718 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.139855 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.140159 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.140261 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.140450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:33.140473 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.140607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:33.140629 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.140808 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:33.140833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.140991 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:33.141013 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.141208 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.141307 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.141464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:33.141487 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.141644 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:33.141666 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.142005 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.142033 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.142279 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.142307 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.142591 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.142643 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.143047 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.143161 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.144114 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:33.144152 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.144676 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.144793 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.145202 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.145262 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.145617 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.145747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.146096 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.146157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.146544 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.146726 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.147219 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.147349 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.147766 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.147846 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.148149 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.148276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.148664 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.148814 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.149423 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.149497 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.149964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.150070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.150507 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.150571 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.150940 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.151101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.151574 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.151675 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.152125 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.152190 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.152475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.152621 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.153096 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.153249 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.153746 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.154305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.154655 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.154786 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.155152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.155213 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.155504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.155625 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.155929 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.155991 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.156371 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.156428 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.156702 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.156851 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.157420 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.157545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.158038 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.158116 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.158641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.158746 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.159177 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.159365 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.159708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.159872 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.160194 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.160254 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.160520 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.160618 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.160919 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.161017 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.161377 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.161456 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.161755 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.161861 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.162177 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.162235 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.162523 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.162621 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.162920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.163020 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.163475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.163703 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.164407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.164464 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.164984 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.165061 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.165448 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.165626 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.166032 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.166241 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.166776 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.167006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.167468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.167615 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.168094 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.168173 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.168708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.168901 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.169521 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.169573 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.170047 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.170121 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.170518 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.170650 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.171194 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.171379 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.171791 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.171996 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.172493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.172576 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.173130 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.173188 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.173733 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.173838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.174326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.174413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.174880 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.174932 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.175408 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.175482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.175920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.176070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.176531 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.176602 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.177270 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.177353 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.177842 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.177919 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.178394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.178507 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.179088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.179173 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.179728 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.179846 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.180390 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.180476 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.180934 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.181063 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.181497 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.181667 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.182119 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.182199 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.182603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.182760 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.183157 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.183343 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.183945 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:33.184009 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.184567 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.184678 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.185193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.185306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.185889 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.185973 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.186577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.186630 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.187371 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.187526 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.188625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:33.188684 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.189235 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.189325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.189927 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.190007 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.190374 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.190408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.190800 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.190851 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.191181 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.191246 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.191576 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.191627 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.191899 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.191934 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.192292 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.192330 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.192715 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.192804 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.193472 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:33.193535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.194195 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.194582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.195309 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.195433 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.221260 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.221357 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.221676 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.221731 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.221983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.222006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.222245 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.222271 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.222507 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.222548 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.222797 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.222824 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.223106 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.223143 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.225257 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-06-21T19:53:33.225829 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.227173 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:33.227830 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.228394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.229881 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.232815 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.05 ms +I, [2018-06-21T19:53:33.234800 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.236297 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:33.237309 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.240366 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-06-21T19:53:33.243890 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.244392 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.244479 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.244952 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.244990 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.247305 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.247359 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.251234 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.251288 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.266981 #1] INFO -- : Inline processing of topic section_change with 1 messages took 15.46 ms +I, [2018-06-21T19:53:33.267413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.272879 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.93 ms +I, [2018-06-21T19:53:33.273488 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.275598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.275760 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.276380 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.276458 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.277353 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:33.281967 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.282671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.282734 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.283079 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.283123 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.283419 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.283450 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.283789 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.283824 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.284117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.284146 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.284504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.284542 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.286143 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.286270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.286964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.297482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.298572 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:33.298773 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.299937 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.300385 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.302504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:33.303031 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.306032 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.41 ms +I, [2018-06-21T19:53:33.306738 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.308027 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.308110 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.309070 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.312233 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.312847 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.312916 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.313449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.313494 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.313781 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.314088 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.314291 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:33.314356 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.314603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.314638 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.314984 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.315486 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.315870 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.315983 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.316397 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.316444 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.316780 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.316886 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.317240 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.317280 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.317576 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.317616 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.317975 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.318016 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.321522 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.321672 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.322044 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.322128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.322561 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.322605 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.336188 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.336380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.337103 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.337166 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.338475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:33.338818 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.340130 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:33.340247 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.340761 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.340830 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.341359 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.341530 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.341902 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.342053 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.342356 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.342524 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.342855 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.343042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.343564 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.343630 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.344163 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.344237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.344692 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.344764 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.345216 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.345292 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.351217 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.61 ms +I, [2018-06-21T19:53:33.351378 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.353041 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-06-21T19:53:33.353132 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.353879 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:33.353989 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.354290 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.354355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.354884 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.355128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.364867 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.365022 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.365407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.365606 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.365919 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.366130 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.366711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.372769 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.373364 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.373423 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.374011 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.374065 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.374328 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:33.374374 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.374943 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.375137 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.375387 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:33.375433 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.375860 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.375907 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.376419 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.376714 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.377574 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.377647 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.378249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.378586 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.400815 #1] INFO -- : Inline processing of topic section_change with 1 messages took 22.03 ms +I, [2018-06-21T19:53:33.400991 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.401707 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.401979 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.405009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.63 ms +I, [2018-06-21T19:53:33.405230 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.405634 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.405704 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.406008 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.406166 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.406498 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.406686 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.407668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:33.407819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.408749 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.408868 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.409480 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.409536 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.409996 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.410045 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.410486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.410534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.412223 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.3 ms +I, [2018-06-21T19:53:33.412286 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.420876 #1] INFO -- : Inline processing of topic section_change with 1 messages took 8.43 ms +I, [2018-06-21T19:53:33.420951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.421525 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.421575 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.423913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-06-21T19:53:33.423998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.425253 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-06-21T19:53:33.425336 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.425809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:33.426009 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.426425 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.426830 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.428759 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-06-21T19:53:33.428875 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.429843 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:33.429920 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.431384 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-06-21T19:53:33.431459 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.432063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.432245 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.432712 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.434102 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.434892 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.434947 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.435520 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.435652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.435936 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.435982 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.436594 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.436677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.436999 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.437044 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.437641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.437906 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.438466 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.438520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.438954 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.439004 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.439472 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.439532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.440025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.440078 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.441751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-06-21T19:53:33.449639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.450496 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.451398 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.452147 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.455309 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.456051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.456110 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.456979 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:33.457056 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.457708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.457789 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.458176 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.459428 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.463900 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.81 ms +I, [2018-06-21T19:53:33.464136 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.464775 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.465027 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.465643 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.465730 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.466396 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.466472 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.466965 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.467041 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.467540 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.467616 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.468627 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:33.468847 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.469451 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.469538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.470146 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.470306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.471025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.471127 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.471607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.471652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.472029 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.472074 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.472802 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.472878 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.473378 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.473444 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.474313 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:33.475605 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.485710 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.64 ms +I, [2018-06-21T19:53:33.485848 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.486208 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.486391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.487053 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.487296 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.489027 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.24 ms +I, [2018-06-21T19:53:33.489161 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.489749 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.489986 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.490450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.490500 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.490987 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.491038 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.491501 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.491551 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.492098 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.492172 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.492665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.492715 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.493352 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.493410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.493774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.494147 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.494702 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.494763 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.495698 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:33.495772 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.496456 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.496614 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.497488 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:33.497719 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.498246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.498423 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.499492 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.499590 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.500155 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.500214 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.500695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.500755 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.501432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.501729 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.512804 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.47 ms +I, [2018-06-21T19:53:33.513081 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.514080 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:33.514353 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.514771 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.515037 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.516909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-06-21T19:53:33.517480 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.520014 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.68 ms +I, [2018-06-21T19:53:33.520549 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.521668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.521733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.522312 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.522405 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.526067 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.08 ms +I, [2018-06-21T19:53:33.526188 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.526851 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.527277 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.527852 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.528089 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.528632 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.528707 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.529800 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:33.529979 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.530636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.530707 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.531509 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:33.531588 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.532403 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.532557 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.533151 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.533222 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.533701 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.533765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.534533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.534740 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.535632 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.535861 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.538239 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.97 ms +I, [2018-06-21T19:53:33.538457 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.539232 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.539675 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.540950 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.541118 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.542205 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.542545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.543443 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.543517 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.551307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.61 ms +I, [2018-06-21T19:53:33.551453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.554716 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.02 ms +I, [2018-06-21T19:53:33.554858 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.555407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.555530 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.556126 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.556258 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.556572 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.556702 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.557014 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.557060 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.557599 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.557786 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.558010 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:33.558055 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.558821 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.559025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.559868 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.559962 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.560695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:33.560771 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.561263 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.561343 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.561894 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.561954 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.562395 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.562457 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.563074 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:33.563276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.563807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.563865 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.565492 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-06-21T19:53:33.572593 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.579397 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.46 ms +I, [2018-06-21T19:53:33.579554 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.579993 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.580041 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.580540 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.580662 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.581079 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.581126 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.581746 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.581816 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.582099 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.582159 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.583210 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:33.583294 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.583711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.583937 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.584439 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.584502 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.585166 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:33.585245 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.585545 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.585593 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.586144 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.586273 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.586605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.586658 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.587227 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.587484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.588091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.588146 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.589350 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:33.589505 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.590051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.590124 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.590610 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.590658 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.591347 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.591398 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.591826 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.591882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.592182 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.592427 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.592843 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.592904 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.593384 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.593622 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.595788 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-06-21T19:53:33.595880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.604575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 8.5 ms +I, [2018-06-21T19:53:33.604829 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.608367 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.05 ms +I, [2018-06-21T19:53:33.608569 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.609935 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-06-21T19:53:33.610026 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.610673 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:33.610811 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.611096 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.611142 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.611617 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.611735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.612117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.612169 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.612882 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.613159 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.613865 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.613926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.614581 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:33.614638 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.615230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.615410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.615920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.615976 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.616389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.616582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.617098 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.617157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.617657 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.617801 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.618171 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.618224 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.619272 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:33.619441 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.619771 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.620031 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.620432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:33.620492 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.620774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.621056 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.621652 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.621793 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.625907 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.93 ms +I, [2018-06-21T19:53:33.626177 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.637690 #1] INFO -- : Inline processing of topic section_change with 1 messages took 11.13 ms +I, [2018-06-21T19:53:33.637861 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.638268 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.638318 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.639009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.639191 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.639667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.639715 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.640217 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.640357 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.640646 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.640692 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.646555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.71 ms +I, [2018-06-21T19:53:33.646661 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.648144 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-06-21T19:53:33.648532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.650542 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.650608 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.651113 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.651164 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.651635 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.651685 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.652242 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.652292 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.652747 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.652827 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.653250 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.653305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.654180 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.654239 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.655038 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:33.655101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.668365 #1] INFO -- : Inline processing of topic section_change with 1 messages took 11.7 ms +I, [2018-06-21T19:53:33.668854 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.671751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-06-21T19:53:33.671836 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.673772 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-06-21T19:53:33.674004 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.675298 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:33.675357 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.678508 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-06-21T19:53:33.678680 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.679530 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.679658 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.680345 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.680397 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.681283 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:33.681538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.682239 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:33.682294 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.683059 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:33.683129 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.683423 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.683581 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.683891 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.683933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.684394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.684611 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.685335 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:33.685389 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.688595 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.8 ms +I, [2018-06-21T19:53:33.688728 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.696932 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:33.697126 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.699931 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.51 ms +I, [2018-06-21T19:53:33.700123 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.701607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.701760 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.703819 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.9 ms +I, [2018-06-21T19:53:33.705143 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.707603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.21 ms +I, [2018-06-21T19:53:33.708003 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.709143 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.709304 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.714806 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.714872 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.715337 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.715384 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.715891 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.715938 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.716598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.716662 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.716909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:33.716955 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.717302 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.717348 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.718071 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.719717 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.721699 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:33.721819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.722801 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:33.722889 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.724196 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:33.724438 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.725825 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:33.725971 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.727485 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-06-21T19:53:33.727954 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.731719 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.38 ms +I, [2018-06-21T19:53:33.731805 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.733531 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.49 ms +I, [2018-06-21T19:53:33.734281 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.736518 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.0 ms +I, [2018-06-21T19:53:33.736765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.737249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.737300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.737801 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.737871 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.739010 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:33.739744 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.741703 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.31 ms +I, [2018-06-21T19:53:33.741862 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.743250 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:33.743318 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.744054 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:33.744327 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.744994 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.745183 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.745864 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.745928 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.746506 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.746569 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.749879 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.67 ms +I, [2018-06-21T19:53:33.750254 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.751222 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.751374 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.751808 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.751857 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.752348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.752398 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.752847 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:33.752896 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.753453 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.753522 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.754372 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.754443 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.754934 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.754988 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.755399 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.755449 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.755835 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.755900 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.756301 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.756420 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.756907 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.756990 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.757709 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.757845 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.758365 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.758422 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.759046 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.759100 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.759602 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.759758 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.760008 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.760053 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.760580 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.760720 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.761042 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.761088 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.761840 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:33.761890 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.762458 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.762558 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.763745 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:33.763829 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.764606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:33.764869 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.765572 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:33.765713 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.766075 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.766229 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.766575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:33.766761 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.770393 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.29 ms +I, [2018-06-21T19:53:33.771987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.772629 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.773054 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.774287 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:33.774469 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.775448 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.775545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.776125 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.776464 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.777725 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:33.777922 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.778940 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.779049 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.779891 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:33.779947 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.780378 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.780499 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.780835 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.780883 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.781124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:33.781276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.781593 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.781639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.782025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.782070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.782591 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.782640 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.783542 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:33.783632 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.784458 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:33.784511 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.784980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.785028 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.785487 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.785534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.786162 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.786361 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.786632 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.786827 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.787107 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.787153 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.788127 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:33.788325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.789516 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:33.789668 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.790627 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.790838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.791488 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.791554 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.792059 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.792124 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.792689 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.793011 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.793775 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.793838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.795039 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:33.795106 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.795845 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.795907 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.796611 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.796689 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.797583 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.797698 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.798432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.798489 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.798995 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.799047 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.799683 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.799893 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.800635 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.800698 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.801667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.801830 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.802437 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:33.802498 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.803169 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:33.803332 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.804714 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-06-21T19:53:33.805006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.806072 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.806175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.806968 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.807032 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.807854 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:33.807973 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.808788 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.809227 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.809964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.810025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.810502 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.810552 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.811032 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.811092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.811663 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.811722 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.812221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:33.812367 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.813956 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.814018 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.814609 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.814740 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.815360 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.815543 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.816043 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.816091 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.816667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.816819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.817390 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.817565 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.818187 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.818251 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.818668 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.818714 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.819150 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.819197 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.819792 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.819850 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.820144 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.820190 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.820881 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.820944 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.821372 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.821550 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.822022 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.822071 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.822478 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.822531 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.822872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.822993 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.823241 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.823388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.823749 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.823926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.824399 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.824450 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.824698 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:33.824766 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.825273 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.825413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.825658 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:33.825709 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.826042 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.826089 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.826552 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:33.826635 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.827436 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.827612 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.832918 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.11 ms +I, [2018-06-21T19:53:33.832999 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.833594 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.833657 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.834227 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.834285 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.836515 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.99 ms +I, [2018-06-21T19:53:33.836583 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.837388 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:33.843240 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.844107 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.844171 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.844993 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:33.845938 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.851850 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.61 ms +I, [2018-06-21T19:53:33.851989 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.852712 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:33.852903 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.853307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.853535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.854296 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:33.854379 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.855009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.855160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.855994 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:33.856208 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.856989 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:33.857051 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.857697 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:33.857762 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.858220 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.858285 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.858858 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:33.860244 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.863831 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.863935 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.864622 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.867290 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.868651 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:33.868788 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.870840 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.22 ms +I, [2018-06-21T19:53:33.871013 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.871542 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.871763 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.873680 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-06-21T19:53:33.873770 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.874592 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:33.874654 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.877697 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.89 ms +I, [2018-06-21T19:53:33.878009 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.879762 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.879840 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.880785 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.881104 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.881784 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:33.881951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.882468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.882520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.883028 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.883079 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.883500 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.883561 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.883977 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.884064 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.884717 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:33.884897 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.885172 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:33.885218 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.885844 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.885909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.886249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.886294 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.892509 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.85 ms +I, [2018-06-21T19:53:33.892652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.893129 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.893199 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.893676 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.893740 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.894278 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.894466 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.894996 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.895096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.895607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.895688 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.896277 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.896484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.897492 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:33.898177 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.899125 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:33.900181 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.900662 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.901044 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.904299 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.05 ms +I, [2018-06-21T19:53:33.905210 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.905725 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:33.905818 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.906210 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.906265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.906813 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.907034 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.907356 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.907671 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.909672 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.911821 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.912366 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.912545 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.912871 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.913072 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.913368 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.913536 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.913849 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.914044 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.914534 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.914597 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.915190 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:33.915268 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.916195 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:33.916512 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.917152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:33.917208 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.917879 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:33.917981 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.918389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.919656 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.922232 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.03 ms +I, [2018-06-21T19:53:33.922354 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.923070 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.923161 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.923858 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:33.924090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.924688 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.924767 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.925557 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.925723 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.926307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.927201 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.927854 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:33.928640 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.930069 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:33.930342 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.930919 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:33.931332 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.931838 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:33.931909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.932949 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:33.933066 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.933896 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.934037 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.934906 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:33.935085 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.936110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-06-21T19:53:33.936181 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.936850 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.937051 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.937599 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.937661 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.938106 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.938183 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.938640 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:33.938702 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.939154 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:33.939216 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.939547 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:33.939643 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.941616 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-06-21T19:53:33.941849 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.942653 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:33.942889 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.943669 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:33.943856 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.944835 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:33.945059 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.946021 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:33.946107 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.949926 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-06-21T19:53:33.950026 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.951048 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:33.951229 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.952586 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:33.952662 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.953366 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:33.953434 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.954016 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:33.954123 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.955140 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:33.955304 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.955616 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.955670 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.956645 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:33.956842 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.957958 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.958132 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.959005 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:33.959097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.960412 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:33.960640 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.961389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.961550 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.962098 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.962160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.962654 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:33.962721 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.963258 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:33.963519 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.964322 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:33.964392 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.964949 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:33.965090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.965696 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.965754 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.966434 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:33.966621 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.968606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:33.968704 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.969951 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:33.970077 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.970797 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:33.970995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.971667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.971735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.972632 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:33.972780 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.973726 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:33.973808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.974789 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:33.974942 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.975648 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:33.975708 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.976312 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:33.976455 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.977020 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:33.977083 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.977943 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:33.978150 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.980553 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:33.980685 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.981979 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:33.982053 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.982925 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:33.983094 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.984082 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:33.984149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.984936 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:33.985011 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.985768 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:33.985901 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.986321 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:33.986485 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.988307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-06-21T19:53:33.991052 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.992053 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:33.992117 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.992839 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:33.992978 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.993867 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:33.994534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.994835 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:33.994984 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.995344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:33.995520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.996190 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:33.996265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.996720 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:33.996770 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.997347 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:33.997488 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.998260 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:33.998339 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:33.999504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:33.999672 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.000375 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:34.000537 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.001276 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:34.001458 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.002326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:34.002389 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.003357 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:34.003537 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.003888 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.004224 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.004859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.005168 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.005931 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:34.005998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.006253 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.006386 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.007167 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.007263 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.008137 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:34.008303 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.010260 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-06-21T19:53:34.010511 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.011097 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.011162 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.011630 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.011683 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.012207 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.012261 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.012661 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.012724 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.013313 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.013381 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.014281 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:34.014355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.014912 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.015072 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.015399 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.015541 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.016055 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.016179 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.016523 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.016584 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.016833 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.016878 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.017314 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.017361 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.017859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.017909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.018766 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.018856 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.019888 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:34.020135 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.020878 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:34.020950 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.021430 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.021642 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.021949 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.022143 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.022433 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.022625 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.023079 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.023149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.023613 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.023679 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.023980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.024205 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.024681 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.024883 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.025299 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.025350 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.025934 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.026106 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.026449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.026790 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.027606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.027804 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.028442 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.028735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.029580 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:34.029841 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.030667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:34.030803 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.031437 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.033759 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.034447 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.034650 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.035222 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.035277 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.035748 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.035819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.036285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.036340 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.037050 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:34.037154 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.037476 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.037699 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.037966 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.038142 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.038435 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.038485 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.039009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.039075 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.039364 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.039416 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.039698 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.039749 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.040298 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.040357 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.041722 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.25 ms +I, [2018-06-21T19:53:34.041885 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.042281 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.042336 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.042813 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.042886 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.043447 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.043657 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.044013 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.044206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.044497 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.044651 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.044914 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.044960 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.045555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.045676 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.045962 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.046007 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.046823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:34.046918 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.047897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:34.047995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.049170 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:34.049368 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.050204 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:34.050390 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.051108 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.051243 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.051719 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.051778 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.052435 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:34.052617 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.053339 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:34.053410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.054362 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:34.054427 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.055622 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T19:53:34.055790 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.056302 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.056355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.057103 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:34.057451 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.058155 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.058345 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.058972 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.060308 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.061525 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.062175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.062948 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.063149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.063886 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.063940 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.064872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:34.064929 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.065632 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.065779 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.066486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:34.066584 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.067377 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:34.067684 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.068666 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:34.068790 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.069769 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T19:53:34.069922 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.070994 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:34.071186 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.072701 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.37 ms +I, [2018-06-21T19:53:34.072832 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.073570 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:34.073652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.074230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.074276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.074786 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.074877 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.075379 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.075444 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.076207 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.076389 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.076941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.076989 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.077479 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.077527 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.078255 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.078307 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.078897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.079140 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.079527 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.079738 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.080021 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.080275 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.080809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.080859 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.081418 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.081470 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.081913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.081961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.082326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.082374 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.082685 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.082737 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.083205 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.083284 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.084048 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:34.084192 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.084512 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.084742 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.085349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.085408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.085968 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.086025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.086690 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.086966 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.087777 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:34.087844 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.088407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.088465 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.089125 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:34.089189 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.089507 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.089558 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.090054 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.090190 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.090767 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.090996 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.091636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.091693 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.092233 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.092292 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.092745 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.093038 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.093629 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.093691 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.094789 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.094989 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.095287 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.095562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.096137 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.096193 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.096766 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.096964 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.097225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.097276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.098029 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.098085 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.098533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.098643 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.099194 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.099249 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.099537 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.099589 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.099875 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.099927 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.100446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.100497 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.101314 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.101389 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.101832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.103130 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.103727 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.103810 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.104694 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:34.105187 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.107349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.35 ms +I, [2018-06-21T19:53:34.107461 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.108493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:34.108734 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.109479 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.109680 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.110334 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.110393 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.110946 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.111003 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.111519 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.111703 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.112210 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.112347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.112931 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.112998 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.114225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.114302 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.114852 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.114913 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.115423 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.115509 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.115975 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.116028 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.116530 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.116716 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.117228 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.117364 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.117872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.117929 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.118759 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T19:53:34.118817 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.119807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:34.119875 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.120678 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:34.120757 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.121494 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:34.121555 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.122746 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:34.122884 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.123695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:34.123896 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.124770 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:34.124907 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.125739 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:34.125873 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.126870 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:34.127008 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.127872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:34.127960 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.128920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:34.129244 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.129725 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.129871 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.130684 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.130747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.131325 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.131384 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.133319 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-06-21T19:53:34.133415 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.134603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:34.134669 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.135445 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:34.135634 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.136374 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:34.136645 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.137692 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:34.137827 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.138609 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:34.138665 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.139605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:34.139747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.140099 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.140165 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.140976 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.141033 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.141308 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.141520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.142149 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.142203 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.142756 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.142816 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.143862 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T19:53:34.143951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.144605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.144750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.145563 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:34.145634 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.146439 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:34.146520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.147507 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:34.147569 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.148311 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:34.148517 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.149200 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:34.149265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.150059 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.150196 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.150723 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.150782 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.151310 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.151362 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.155880 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.2 ms +I, [2018-06-21T19:53:34.156172 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.156866 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:34.156972 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.157332 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.157543 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.158332 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:34.158387 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.159255 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:34.159436 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.159782 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.159843 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.160533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.161070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.161380 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.161570 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.161852 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.162097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.162800 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.162855 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.167837 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.55 ms +I, [2018-06-21T19:53:34.168246 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.168859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.168912 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.169400 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.169631 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.170266 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.170340 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.170924 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.171154 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.171595 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.171667 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.172367 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:34.172633 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.173646 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:34.173712 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.174637 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:34.174701 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.179246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.59 ms +I, [2018-06-21T19:53:34.179623 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.180518 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:34.180830 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.181532 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.181730 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.182287 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.182351 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.182856 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.183058 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.183677 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.183741 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.184532 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.184659 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.185163 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.185221 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.185879 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:34.186011 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.189969 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.190263 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.191000 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.191065 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.191339 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.191386 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.191728 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.191772 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.192091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.192141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.192379 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.192529 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.192848 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.193012 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.193441 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.194554 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.197562 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.61 ms +I, [2018-06-21T19:53:34.197666 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.198038 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.198101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.198365 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.198410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.199084 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.199152 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.199660 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.199801 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.200318 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.200390 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.200996 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.201054 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.201323 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.201387 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.202167 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:34.202229 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.203005 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:34.203136 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.203708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.203776 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.204570 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:34.204637 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.205275 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.205413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.206254 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.206828 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.208361 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:34.208521 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.208941 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.209343 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.210155 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.210561 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.211409 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:34.211539 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.212112 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.212175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.213099 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:34.213212 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.214197 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:34.214390 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.214797 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.214857 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.215315 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.215368 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.216057 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.216114 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.216450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.216729 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.217332 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.217388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.217893 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.217941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.218374 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.218419 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.218815 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.218860 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.219450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.219600 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.219866 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.219912 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.220312 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.220358 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.220874 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.221058 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.221358 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.221404 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.221953 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.222018 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.222317 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.222362 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.222820 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.222868 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.223313 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.223378 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.223818 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.223887 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.224612 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.224732 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.226348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.226440 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.227124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.227214 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.227665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.227794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.228358 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.228482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.229388 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:34.229478 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.229954 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.230006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.230729 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.230781 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.231215 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.231337 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.231724 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.231799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.232120 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.232291 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.232638 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.232686 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.233012 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.233296 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.233846 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.233924 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.234468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.234607 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.234962 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.235009 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.235379 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.235447 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.235756 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.235802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.236144 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.236267 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.236508 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.236651 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.236868 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.236912 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.237323 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.237372 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.237791 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.237839 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.238225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.238284 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.238523 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.238672 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.238899 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.239005 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.239818 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.240081 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.240799 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.240856 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.241394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.241453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.242199 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.242686 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.243360 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.243437 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.244025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.244541 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.245148 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.245272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.245514 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.245653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.246265 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.246399 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.247159 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:34.247933 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.249048 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:34.249282 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.249551 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.249808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.250330 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.250380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.250903 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.251042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.251487 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.251532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.252063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.252306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.252689 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.252800 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.253317 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.253382 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.253983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.254048 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.254502 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.254551 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.256026 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.256101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.256748 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.256827 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.257324 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.257376 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.257813 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.257864 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.258326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.258376 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.258699 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.258778 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.259316 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.259391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.261480 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.86 ms +I, [2018-06-21T19:53:34.261825 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.262811 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T19:53:34.262931 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.263742 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:34.263829 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.264470 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.264523 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.264983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.265031 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.265438 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.265504 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.266058 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.266183 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.266512 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.266560 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.267348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:34.267449 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.272030 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.63 ms +I, [2018-06-21T19:53:34.272141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.272874 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:34.272984 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.274768 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:34.274839 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.275272 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.284490 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.284916 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.284964 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.285278 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.285324 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.286042 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:34.286096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.286783 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.286846 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.288481 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.288538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.293105 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:34.293282 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.294412 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-06-21T19:53:34.294476 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.295018 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.295223 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.295841 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.295902 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.296410 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.296461 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.296998 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.297174 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.297478 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.297531 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.298195 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.298252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.298517 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.298725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.299601 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:34.299661 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.299939 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.299995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.300625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.300693 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.301328 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.301482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.302018 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.304764 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.312589 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.39 ms +I, [2018-06-21T19:53:34.312693 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.313028 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.313099 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.313382 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.313423 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.313777 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.313835 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.314046 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.314128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.314371 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.314406 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.314684 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.314733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.315016 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.315050 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.316685 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.47 ms +I, [2018-06-21T19:53:34.316733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.317128 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.317187 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.319464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.15 ms +I, [2018-06-21T19:53:34.320365 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.324302 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.47 ms +I, [2018-06-21T19:53:34.324388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.327852 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.32 ms +I, [2018-06-21T19:53:34.327903 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.328278 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.328312 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.328575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.328634 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.328878 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.328908 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.329273 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.329349 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.329547 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.329581 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.329866 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.329904 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.330271 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.330323 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.330553 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.330587 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.330930 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.330981 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.331335 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.331384 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.332436 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:34.332826 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.333778 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.333905 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.336617 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.5 ms +I, [2018-06-21T19:53:34.336848 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.337509 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.337743 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.338682 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:34.338879 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.339459 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.339599 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.347016 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.41 ms +I, [2018-06-21T19:53:34.347111 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.352342 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.86 ms +I, [2018-06-21T19:53:34.352446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.352975 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.353054 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.353600 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.353676 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.353966 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.354022 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.354317 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.356387 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.356897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.357016 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.357361 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.357408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.357658 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.357778 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.358011 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.358056 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.358349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.358407 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.358642 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.358736 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.358990 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.359033 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.359340 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.359388 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.359625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.359701 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.360017 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.360073 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.362326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-06-21T19:53:34.362391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.362704 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.362794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.363099 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.363145 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.363457 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.363503 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.363831 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.363878 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.364260 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.364431 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.364936 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.364986 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.365342 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.365446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.365852 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.365951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.366348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.366408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.369375 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.76 ms +I, [2018-06-21T19:53:34.369525 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.369910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.370145 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.370565 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.370626 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.371096 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.371192 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.371631 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.371674 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.372157 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.372247 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.372578 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.372625 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.373016 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.373076 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.373634 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.373771 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.374169 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.374293 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.374563 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.374617 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.375049 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.375096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.375455 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.375502 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.375933 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.375997 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.376392 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.376447 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.376703 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.376812 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.380449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.48 ms +I, [2018-06-21T19:53:34.380634 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.381105 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.381156 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.381549 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.381595 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.381909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.381995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.382208 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.382289 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.382526 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.382571 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.382820 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.382865 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.383068 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.383112 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.383386 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.383432 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.383662 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.383711 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.384025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.384058 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.384429 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.384462 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.384847 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.384879 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.385192 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.385220 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.499767 #1] INFO -- : Inline processing of topic section_change with 1 messages took 114.4 ms +I, [2018-06-21T19:53:34.499829 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.500478 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.500520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.500911 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.500949 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.502748 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.65 ms +I, [2018-06-21T19:53:34.502833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.503497 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.503543 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.504269 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:34.504352 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.505297 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.505367 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.506362 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:34.506579 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.507450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:34.507528 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.508117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.508300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.509495 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:34.509782 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.510740 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:34.510901 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.512019 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:34.512180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.513114 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:34.513282 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.514740 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-06-21T19:53:34.515028 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.515899 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:34.516356 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.518087 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:34.518480 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.528665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 9.56 ms +I, [2018-06-21T19:53:34.528742 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.529351 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.529409 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.529870 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.529902 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.530221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.530277 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.530598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.530629 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.530884 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.530911 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.533892 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.84 ms +I, [2018-06-21T19:53:34.534042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.540071 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.71 ms +I, [2018-06-21T19:53:34.540218 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.540801 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.540861 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.541186 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.541211 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.541493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.541519 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.541809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.541833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.544484 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.43 ms +I, [2018-06-21T19:53:34.544619 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.545616 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.545735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.546444 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.546571 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.548078 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:34.548783 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.551414 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.551519 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.552221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.552363 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.552894 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.553162 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.553949 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.554059 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.554686 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.554834 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.555357 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.555497 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.556010 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.556133 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.556646 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.556756 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.557250 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.557382 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.557799 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.557919 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.558354 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.558520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.559095 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.559223 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.559695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.559808 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.560331 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.560460 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.560902 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.561014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.561474 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.564424 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.566520 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.566646 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.567100 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.567134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.567476 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.567505 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.567749 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.567784 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.568075 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.568101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.568306 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.568328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.568681 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.568718 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.574149 #1] INFO -- : Inline processing of topic section_change with 1 messages took 5.29 ms +I, [2018-06-21T19:53:34.574263 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.576143 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.5 ms +I, [2018-06-21T19:53:34.576237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.576796 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.576907 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.577633 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:34.577679 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.580647 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-06-21T19:53:34.580712 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.581240 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.581289 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.581648 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.581694 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.582166 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.582214 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.582621 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.582667 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.583059 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.583128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.583676 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.583739 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.584265 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.584309 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.584955 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.585445 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.586094 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.586212 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.587489 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:34.588023 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.588636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.589030 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.590076 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:34.590134 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.590762 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.590823 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.591978 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:34.592519 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.597652 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.93 ms +I, [2018-06-21T19:53:34.598043 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.599025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:34.599103 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.600196 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T19:53:34.600266 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.601464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:34.601535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.602040 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.602580 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.603230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.603310 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.604631 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.604707 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.605577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:34.606162 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.609856 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.22 ms +I, [2018-06-21T19:53:34.610340 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.611054 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.611115 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.611662 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.611720 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.612148 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.612206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.612898 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:34.613098 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.613406 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.613602 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.614072 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.614141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.614606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.614667 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.615120 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.615175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.615634 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.615690 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.616104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.616160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.616582 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.616668 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.617058 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.617129 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.617413 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.617606 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.617887 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.618069 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.618363 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.618414 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.618871 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.619033 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.619389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.619627 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.619925 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.620107 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.620343 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.620385 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.620795 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.620842 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.621184 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.621230 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.621584 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.621647 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.621880 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.621925 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.622262 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.622307 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.622688 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.622734 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.623181 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.623244 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.626372 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.85 ms +I, [2018-06-21T19:53:34.626812 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.629414 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:34.629701 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.630365 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.630572 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.630916 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.631088 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.631411 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.631457 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.631801 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.631846 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.632204 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.632250 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.632683 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.632761 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.633274 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.633363 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.633834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.633882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.634310 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.634357 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.634717 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.634787 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.635176 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.635226 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.635695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.635757 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.636309 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.636368 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.637116 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:34.637173 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.637465 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.637627 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.637899 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.637948 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.638369 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.638422 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.638827 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.638896 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.639449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.639722 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.640427 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:34.640699 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.641369 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.641424 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.641822 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.641868 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.642250 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.642296 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.642648 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.642695 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.642925 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.642971 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.643468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.643800 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.644755 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.644855 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.645700 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.645821 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.646652 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.646762 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.647833 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:34.647954 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.648836 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.648957 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.649901 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:34.650152 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.651213 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:34.651385 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.652303 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:34.652375 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.652865 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.652925 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.653475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.653710 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.661782 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.9 ms +I, [2018-06-21T19:53:34.664535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.670436 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.670716 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.671258 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.671330 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.671880 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.671945 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.672393 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.672463 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.672931 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.673003 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.673438 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.673506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.673975 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.674030 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.674405 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.674453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.674838 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.674888 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.675265 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.677506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.678063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.678301 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.678753 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.678827 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.679698 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.679776 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.680168 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.680234 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.680551 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.680698 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.681008 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.681136 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.681715 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.681860 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.682249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.682302 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.682757 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.682806 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.683293 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.683370 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.683966 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.684014 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.692082 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:34.692350 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.693062 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.693282 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.693989 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.695021 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.695563 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.695680 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.695980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.696023 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.696446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.696494 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.696816 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.696861 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.697241 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.697287 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.697577 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.697671 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.697996 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.698037 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.698489 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.698543 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.699040 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.699088 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.699680 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.699780 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.700110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.700323 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.700748 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.700796 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.701112 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.701242 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.701575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.701735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.702084 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.702216 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.702569 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.702616 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.703065 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.703226 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.703756 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.703844 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.704447 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.704521 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.705191 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.705306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.705797 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.705862 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.706282 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.706347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.706762 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.706848 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.707254 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.707354 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.708403 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:34.708502 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.709399 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:34.709503 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.710334 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.710395 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.710910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.710958 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.711472 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.711518 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.712002 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.712048 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.712475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.712521 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.713032 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.713096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.713766 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.713863 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.714281 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.714328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.714639 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.714767 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.715040 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.715082 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.719807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.51 ms +I, [2018-06-21T19:53:34.719923 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.720464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.720516 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.721004 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.721054 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.721444 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.721492 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.721807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.721853 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.722068 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.722112 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.722402 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.722446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.722813 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.722859 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.723349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.723413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.723944 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.723990 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.724355 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.724401 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.724671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.724842 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.725159 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.725284 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.725567 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.725617 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.726001 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.726044 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.726509 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.726580 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.727667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:34.727982 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.728946 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.729135 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.729886 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.729957 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.730599 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.730649 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.731119 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.731165 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.731641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.731691 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.732190 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.732368 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.732831 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.732904 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.733327 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.733400 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.733931 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.733978 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.734424 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.734481 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.734874 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.734920 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.735192 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.735343 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.735607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.735649 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.736032 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.736074 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.736478 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.736520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.736915 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.736958 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.737395 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.737482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.737980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.738027 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.738429 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.738473 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.738859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.738930 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.739329 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.739376 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.739782 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.739830 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.740140 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.740356 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.740669 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.740816 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.741113 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.741158 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.741549 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.741595 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.741961 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.742007 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.742307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.742353 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.742642 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.742765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.743283 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.743349 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.743938 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.743988 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.744368 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.744414 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.744830 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.744875 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.745151 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.745265 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.745598 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.745639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.751438 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.751517 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.751919 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.751970 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.752300 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.752357 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.752679 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.752856 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.753163 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.753317 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.753673 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.753791 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.754091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.754135 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.754477 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.754520 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.754806 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.754869 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.755159 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.755204 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.755652 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.755709 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.756110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.756153 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.756592 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.756641 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.757009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.757054 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.757362 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.757406 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.757622 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.757664 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.757994 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.758036 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.758338 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.758382 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.758579 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:34.758679 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.759117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.759181 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.759688 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.759873 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.760461 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.760522 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.760988 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.761073 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.761650 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.761710 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.762486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.762548 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.762999 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.763060 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.763519 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.763595 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.764074 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.764122 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.764460 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.764504 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.764725 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.764918 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.765209 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.765364 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.765670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.765734 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.766151 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.766204 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.766641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.766714 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.767498 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.767553 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.767983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.768047 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.768937 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:34.769019 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.769473 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.769562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.770060 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.770119 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.770601 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.770662 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.771069 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.771116 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.771563 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.771609 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.771969 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.772016 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.772409 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.772458 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.772699 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.772758 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.773161 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.773220 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.773666 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.773719 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.774636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.774684 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.775063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.775107 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.775432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.775475 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.775700 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.775741 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.776066 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.776108 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.780561 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.29 ms +I, [2018-06-21T19:53:34.780669 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.781198 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.781251 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.781606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.781656 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.781983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.782063 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.782390 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.782447 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.782702 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.782761 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.783223 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.783285 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.783695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.783772 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.784179 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.784251 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.784849 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.784962 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.785208 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.785274 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.785643 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.785710 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.786035 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.786081 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.786432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.786602 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.787163 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.787260 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.787727 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.787778 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.788232 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.788286 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.788729 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.788788 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.789564 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.789652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.790094 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.790152 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.790533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.790582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.790935 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.790991 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.791230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.791275 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.791620 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.791675 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.792037 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.792098 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.792461 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.792508 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.792751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.792803 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.793207 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.793267 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.793695 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.793756 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.794156 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.794210 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.794571 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.794631 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.796762 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.796818 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.797234 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.797280 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.797653 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.797698 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.798026 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.798073 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.798311 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.798450 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.798693 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.798736 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.799079 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.799144 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.799638 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.799689 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.800072 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.800119 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.800473 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.800539 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.800753 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.800797 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.801105 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.801149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.801471 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.801518 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.801721 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.801765 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.802104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.802149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.802475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.802522 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.802750 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.802794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.803115 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.803162 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.803667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.803735 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.804314 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.804550 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.805017 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.805067 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.805549 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.805601 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.806015 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.806064 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.806505 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.806558 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.811643 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.91 ms +I, [2018-06-21T19:53:34.811730 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.812548 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.812613 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.813079 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.813131 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.813554 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.813606 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.814054 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.814116 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.814506 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.814554 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.814859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.814962 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.815234 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.815279 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.815614 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.815659 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.816177 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.816300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.816872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.817034 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.817474 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.817532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.817871 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.818020 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.818326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.818370 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.818774 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.818820 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.819290 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.819338 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.819825 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.819888 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.820589 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.820653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.821257 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.821333 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.822096 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.822180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.822716 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.822810 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.823530 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.823608 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.824285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:34.824539 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.825242 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.825309 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.825994 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.826064 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.826711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.826799 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.827696 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.827819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.828693 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.828805 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.829723 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.829833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.830800 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:34.831068 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.832023 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:34.832136 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.832850 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:34.832910 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.833486 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.833560 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.834104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.834160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.834702 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.834760 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.835245 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.835300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.835784 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.835848 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.836349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.836407 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.836917 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.837098 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.837627 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.837692 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.845228 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.3 ms +I, [2018-06-21T19:53:34.845404 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.846183 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.846287 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.849181 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.49 ms +I, [2018-06-21T19:53:34.849302 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.849851 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.849903 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.850307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.850355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.850713 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.850760 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.851136 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.851183 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.851528 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.851588 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.851881 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.851941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.852346 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.852391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.852835 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.852882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.853347 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.853409 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.854296 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.854355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.854878 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.854926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.855686 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.855763 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.856340 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.856392 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.856865 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.856928 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.857393 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.857440 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.857883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.857930 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.858331 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.858396 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.858910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.858984 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.859462 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.859633 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.860483 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:34.860660 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.861860 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:34.862141 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.864636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-06-21T19:53:34.864775 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.865388 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.865437 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.865926 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.865981 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.867248 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-06-21T19:53:34.867362 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.871995 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.13 ms +I, [2018-06-21T19:53:34.872383 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.877519 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:34.877654 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.878131 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.878182 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.878628 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.878683 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.879293 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.879384 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.879976 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.880035 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.880737 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.880812 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.881315 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.881364 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.881744 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.881792 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.882172 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.882227 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.882516 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.882651 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.882950 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.883042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.883796 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.883853 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.884302 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.884347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.884740 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.884809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.885163 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.885215 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.885434 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:34.885476 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.885815 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.885859 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.886214 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.886269 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.886551 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.886742 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.887560 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:34.888011 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.888554 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.888748 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.889182 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.889239 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.889596 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.889646 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.890235 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.890301 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.890978 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.891055 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.891579 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.891659 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.892537 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.892621 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.893242 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:34.893343 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.894468 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.894526 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.894971 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.895024 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.895492 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.895538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.895839 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.896006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.896671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.896727 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.897132 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.897180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.897596 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.897644 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.898013 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.898060 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.898303 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.898348 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.898756 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.898802 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.899308 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.899359 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.899736 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.899782 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.900129 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.900162 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.900781 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.900844 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.901270 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.901329 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.901848 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.901907 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.902377 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.902432 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.902674 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.902820 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.909473 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.48 ms +I, [2018-06-21T19:53:34.909578 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.910136 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.910185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.910617 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.910664 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.911021 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.911065 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.911437 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.911486 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.911996 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.912070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.912563 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.912637 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.913097 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.913163 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.914266 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.914337 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.914665 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.914787 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.915103 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.915160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.915540 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.915610 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.915999 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.916061 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.916593 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.916680 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.917701 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:34.917909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.918503 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.918559 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.919104 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.919185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.919645 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:34.919697 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.920202 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.920361 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.920856 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.920920 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.921493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.921562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.922075 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.922144 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.925344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.97 ms +I, [2018-06-21T19:53:34.925406 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.925727 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.925870 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.926117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.926160 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.926987 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.927056 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.927596 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.927653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.928209 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.928390 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.928872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.928940 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.929179 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.929225 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.929672 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.929720 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.930110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.930155 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.930507 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.930551 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.930859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.930905 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.931139 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.931180 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.931451 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:34.931493 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.931711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:34.931856 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.932097 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.932139 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.932452 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.932518 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.933032 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.933096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.933542 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.933600 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.933980 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.934025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.934228 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.937878 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.938491 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.938551 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.938978 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.939048 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.939634 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.939732 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.940268 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.940490 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.940973 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.941042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.941496 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.941563 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.941973 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.942073 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.942500 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.942567 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.943023 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.943090 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.943625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.943697 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.944210 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.944269 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.944962 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.945026 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.945603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.945676 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.946134 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:34.946181 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.947111 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:34.947174 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.947649 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.947698 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.948138 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.948184 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.948587 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.948638 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.949183 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.949248 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.950190 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:34.950255 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.951026 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:34.951087 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.951685 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.951746 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.952583 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.952643 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.953193 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.953252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.953811 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:34.954583 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.955132 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:34.955190 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.955636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:34.955722 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.956245 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.956300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.957048 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:34.957110 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.957670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.957727 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.958233 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.958288 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.958933 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.959025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.959601 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.959660 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.960324 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:34.960522 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.961066 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:34.961127 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.961670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:34.961728 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.962317 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.962529 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.963132 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.963194 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.963708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.963757 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.964153 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:34.964196 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.964608 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.964653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.965051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.965096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.965315 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.971497 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.972344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:34.972540 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.973261 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:34.973361 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.974618 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:34.974681 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.975091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.975151 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.975533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:34.975591 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.975955 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:34.976023 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.976576 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.976665 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.977179 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:34.977241 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.977703 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.977763 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.978283 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.978338 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.978841 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.978905 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.979224 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.979270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.979686 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:34.979731 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.980091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.980167 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.980554 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:34.980600 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.981011 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:34.981058 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.981435 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.981491 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.981793 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.981840 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.982274 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.982320 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.982708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:34.982770 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.983329 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:34.983498 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.983848 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:34.984062 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.984780 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.984847 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.985462 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.985542 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.985804 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.985849 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.986331 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.986725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.987352 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:34.987535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.988077 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:34.988133 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.988611 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:34.988667 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.989219 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:34.989297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.989875 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:34.990062 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.990544 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:34.990598 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.990876 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.991085 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.991476 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.991552 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.991836 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.992025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.992303 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.992378 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.992780 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.992833 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.993261 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:34.993319 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.993753 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:34.993813 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.994184 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:34.994230 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.994571 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:34.994618 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.994851 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:34.994974 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.995241 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:34.995287 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.995607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:34.995700 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.995977 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:34.996067 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:34.996304 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:34.996349 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.002198 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:35.002331 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.003249 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:35.003352 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.004567 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:35.004697 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.007303 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.39 ms +I, [2018-06-21T19:53:35.007383 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.007866 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:35.007919 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.008534 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:35.008625 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.008913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:35.009138 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.009808 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:35.009890 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.010495 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:35.010609 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.011091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:35.011157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.011607 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:35.011675 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.012360 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:35.012430 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.013264 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:35.013409 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.014328 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:35.014407 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.015088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.015152 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.015837 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:35.015911 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.016729 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:35.016890 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.018045 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:35.018167 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.019308 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:35.019582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.020620 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:35.020702 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.021455 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:35.021631 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.022248 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:35.022305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.022854 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:35.022913 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.023263 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:35.023356 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.023714 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:35.023767 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.024254 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.024309 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.024844 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:35.024913 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.025388 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:35.025443 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.026022 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:35.026112 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.026887 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:35.027962 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.034611 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.07 ms +I, [2018-06-21T19:53:35.034783 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.035488 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:35.035624 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.036087 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:35.036176 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.036730 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:35.036854 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.038475 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.17 ms +I, [2018-06-21T19:53:35.038710 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.039650 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:35.039713 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.040148 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:35.040194 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.040653 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:35.040714 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.041138 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:35.041220 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.041690 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:35.041747 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.042173 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:35.042222 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.042686 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.042752 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.043491 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:35.043711 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.044122 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:35.044212 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.044676 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:35.044723 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.045112 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:35.045185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.045484 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:35.045583 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.046110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.046163 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.046939 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:35.047397 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.050910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:35.050975 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.051373 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:35.051425 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.051807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:35.051859 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.052215 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:35.052258 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.052493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:35.052535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.052934 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:35.052981 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.053426 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:35.053479 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.054717 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T19:53:35.054785 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.055285 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:35.055340 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.055652 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:35.055707 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.055979 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:35.056023 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.056861 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T19:53:35.056973 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.057714 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:35.057779 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.058220 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:35.058284 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.058968 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:35.059046 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.066839 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.44 ms +I, [2018-06-21T19:53:35.068798 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.071210 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.45 ms +I, [2018-06-21T19:53:35.071491 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.075371 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.42 ms +I, [2018-06-21T19:53:35.075440 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.075914 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.075959 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.076439 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.076484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.076948 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:35.076995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.077423 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:35.077471 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.078027 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:35.078094 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.078856 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:35.078928 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.079494 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:35.079542 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.080253 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:35.080326 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.080764 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:35.080818 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.081308 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.081356 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.081785 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:35.081838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.082295 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:35.082344 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.082945 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:35.083040 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.083594 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:35.083794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.084602 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:35.084768 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.085394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:35.085452 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.086111 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:35.086314 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.087102 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:35.087303 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.087856 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:35.087905 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.088389 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:35.088438 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.088862 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:35.088910 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.089459 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:35.089512 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.090021 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:35.090070 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.090555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:35.090603 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.101587 #1] INFO -- : Inline processing of topic section_change with 1 messages took 8.62 ms +I, [2018-06-21T19:53:35.101795 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.102272 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:35.102331 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.102628 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:35.102674 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.103456 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:35.103535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.104171 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:35.104334 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.104986 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:35.105040 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.105522 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.105573 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.106601 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:35.106686 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.107812 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:35.107902 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.108423 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:35.108484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.109098 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:35.109175 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.109897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:35.109950 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.110432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:35.110482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.110918 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:35.110966 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.111367 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:35.111642 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.112124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:35.112172 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.112627 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:35.112674 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.113102 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:35.113165 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.113623 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:35.113680 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.114395 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:35.114447 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.114925 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:35.114995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.115424 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:35.115472 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.115846 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:35.115893 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.116192 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:35.116320 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.116606 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:35.116650 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.116997 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:35.117042 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.117453 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:35.117528 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.117907 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:35.117954 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.118280 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:35.118337 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.118717 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:35.118851 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.119152 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:35.119197 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.119651 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:35.119712 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.120188 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:35.120355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.120862 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:35.120924 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.127497 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.36 ms +I, [2018-06-21T19:53:35.127677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.128573 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:35.128671 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.129438 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:35.129539 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.130101 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:35.130313 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.130822 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:35.130885 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.131271 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:35.131335 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.131824 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:35.131886 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.132400 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:35.132466 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.133065 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:35.133131 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.133553 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:35.133614 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.134650 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:35.134776 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.135347 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:35.135408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.135883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:35.135941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.136382 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:35.136443 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.136956 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:35.137011 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.137734 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:35.137810 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.138138 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:35.138276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.138676 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:35.138788 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.139290 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:35.139369 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.140055 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:35.140107 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.140496 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:35.140565 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.140859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:35.140906 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.141320 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:35.141369 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.141660 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:35.141746 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.142033 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:35.142077 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.142422 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:35.142468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.142751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:35.142796 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.143142 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:35.143231 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.143499 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:35.143540 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.143872 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:35.143913 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.144116 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:35.144143 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.144365 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:35.144419 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.144563 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:35.144590 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.144799 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:35.144828 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.145002 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:35.145028 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.145188 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:35.145255 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.145427 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:35.145453 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.145612 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:35.145638 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.145838 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:35.145866 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.146007 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:35.146053 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.146291 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:35.146335 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:35.146575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:35.146604 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.425150 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1278.43 ms +I, [2018-06-21T19:53:36.425217 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.425539 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.425568 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.425735 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:36.425783 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.425938 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:36.425973 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.426191 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:36.426228 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.426556 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.426610 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.429306 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.36 ms +I, [2018-06-21T19:53:36.429384 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.430558 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.430712 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.431538 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.437006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.438067 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.438489 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.439566 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:36.440125 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.440594 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.440632 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.440874 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.440899 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.441132 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:36.441197 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.441375 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.441398 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.441667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.441750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.441934 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.441957 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.442164 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.442189 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.442332 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:36.442384 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.442555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.442582 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.442883 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.442925 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.443307 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.443351 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.454250 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.35 ms +I, [2018-06-21T19:53:36.455103 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.455718 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.455787 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.456566 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:36.456607 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.456855 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:36.456887 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.457171 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.457246 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.457457 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:36.457495 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.458495 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.459297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.459826 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.459855 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.460898 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.461616 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.462055 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.462104 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.462298 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:36.462328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.463119 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:36.463157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.463425 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.463638 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.464792 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.464934 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.466158 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:36.466317 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.471264 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.07 ms +I, [2018-06-21T19:53:36.472125 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.473693 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:36.474208 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.475322 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:36.475468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.475973 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.476305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.477688 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.477837 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.478298 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.478551 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.480167 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-06-21T19:53:36.480312 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.480753 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.480870 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.481407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:36.481506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.482578 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:36.482682 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.483770 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:36.483971 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.484765 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.485050 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.485588 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.486136 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.486948 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.487000 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.488167 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.488228 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.489240 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:36.489344 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.491198 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.61 ms +I, [2018-06-21T19:53:36.491394 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.495758 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.82 ms +I, [2018-06-21T19:53:36.496047 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.496773 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:36.496938 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.497503 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.497673 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.498077 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.498228 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.498721 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.498967 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.499836 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:36.499994 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.500694 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.500841 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.501816 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:36.501960 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.502493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.503097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.503834 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.503957 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.504701 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:36.504832 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.505452 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.505544 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.506025 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.506206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.507237 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:36.507425 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.508535 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:36.508725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.510516 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:36.510841 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.511506 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.511619 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.512090 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:36.512177 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.512613 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.512665 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.513130 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.513254 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.513741 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:36.513902 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.514213 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:36.514252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.514409 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:36.514434 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.514773 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.514918 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.515333 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.515448 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.515948 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.516005 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.516867 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:36.517035 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.517334 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:36.517367 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.517538 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:36.517561 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.517908 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:36.517942 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.518173 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:36.518205 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.522348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.96 ms +I, [2018-06-21T19:53:36.522650 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.523366 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:36.523410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.523810 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.523982 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.524312 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:36.524343 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.524544 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:36.524639 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.524870 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:36.524893 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.525029 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:36.525052 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.525305 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.525334 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.525512 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.525533 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.525729 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:36.525798 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.525969 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:36.525993 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.526304 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.526347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.526667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:36.526713 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.526989 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.527030 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.527418 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.527469 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.529078 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.43 ms +I, [2018-06-21T19:53:36.529531 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.530783 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:36.530877 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.532113 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:36.532997 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.534122 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T19:53:36.534395 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.535001 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.535215 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.535951 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:36.536003 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.537223 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:36.537515 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.538513 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:36.538579 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.539964 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-06-21T19:53:36.540200 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.541212 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:36.541484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.542925 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:36.543102 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.544520 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:36.544712 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.545573 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:36.545742 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.546696 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:36.546992 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.548235 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:36.548332 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.549002 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:36.549092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.549877 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:36.549951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.552582 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.33 ms +I, [2018-06-21T19:53:36.552772 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.553784 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:36.553932 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.554734 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.554882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.555902 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:36.556045 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.556983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:36.557296 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.558432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:36.558776 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.559775 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:36.559970 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.561124 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:36.561999 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.563995 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-06-21T19:53:36.564148 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.565027 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:36.565408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.567055 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T19:53:36.567282 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.568407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:36.569617 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.573762 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.97 ms +I, [2018-06-21T19:53:36.573993 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.575604 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:36.575841 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.576579 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:36.576768 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.577608 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:36.577778 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.578903 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:36.579032 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.579823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.579930 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.580689 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:36.580859 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.581537 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:36.581670 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.582299 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:36.582438 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.583323 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:36.583483 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.584313 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.584367 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.585128 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:36.585266 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.585814 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.585936 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.587876 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:36.588094 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.590109 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-06-21T19:53:36.590439 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.591437 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:36.591999 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.592730 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.592772 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.600915 #1] INFO -- : Inline processing of topic section_change with 1 messages took 7.29 ms +I, [2018-06-21T19:53:36.601707 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.603474 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-06-21T19:53:36.604047 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.605626 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:36.605746 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.613082 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.32 ms +I, [2018-06-21T19:53:36.613165 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.614319 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T19:53:36.614788 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.615650 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:36.615995 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.617726 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-06-21T19:53:36.617934 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.620075 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-06-21T19:53:36.621237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.623087 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:36.623241 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.624512 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.94 ms +I, [2018-06-21T19:53:36.624716 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.626247 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:36.626996 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.627800 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.628663 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.630618 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-06-21T19:53:36.631962 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.632699 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:36.632864 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.634493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-06-21T19:53:36.634560 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.635362 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:36.635510 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.636197 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.636328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.637131 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.637291 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.639377 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:36.639610 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.640251 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:36.640289 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.640783 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.640819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.641261 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.641297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.642983 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-06-21T19:53:36.643096 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.644121 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:36.644300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.644779 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.644951 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.645439 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:36.645589 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.646484 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:36.646865 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.648151 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.66 ms +I, [2018-06-21T19:53:36.648324 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.650130 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.4 ms +I, [2018-06-21T19:53:36.650391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.651228 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:36.651297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.652572 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:36.652794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.653760 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:36.653958 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.654634 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:36.654812 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.655562 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:36.655672 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.665161 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.9 ms +I, [2018-06-21T19:53:36.665326 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.666001 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.666143 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.670759 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.11 ms +I, [2018-06-21T19:53:36.671648 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.681165 #1] INFO -- : Inline processing of topic section_change with 1 messages took 6.34 ms +I, [2018-06-21T19:53:36.682007 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.683519 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:36.683586 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.684605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:36.684652 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.688700 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.68 ms +I, [2018-06-21T19:53:36.690750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.697136 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.67 ms +I, [2018-06-21T19:53:36.697612 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.699896 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:36.699999 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.700785 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:36.700900 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.703838 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.46 ms +I, [2018-06-21T19:53:36.704061 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.704550 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.704692 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.705164 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.705303 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.705722 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.705869 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.706325 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.706485 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.706997 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:36.707063 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.709145 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.92 ms +I, [2018-06-21T19:53:36.710007 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.712247 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.26 ms +I, [2018-06-21T19:53:36.712363 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.712731 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:36.712766 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.714218 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.714262 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.714888 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.714977 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.715246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.715279 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.716677 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.717005 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.717679 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.717984 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.719205 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-06-21T19:53:36.719272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.720533 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:36.720864 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.722441 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-06-21T19:53:36.722548 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.723092 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.723206 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.724428 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.725204 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.725993 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.726108 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.727482 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-06-21T19:53:36.727789 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.728618 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:36.728893 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.731131 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-06-21T19:53:36.731328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.734724 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-06-21T19:53:36.735423 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.738247 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.21 ms +I, [2018-06-21T19:53:36.738408 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.740248 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:36.740906 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.741950 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:36.742647 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.743054 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.743093 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.743966 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T19:53:36.744009 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.744275 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:36.744360 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.744605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:36.744640 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.744952 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.744987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.745913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:36.745956 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.747138 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-06-21T19:53:36.747214 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.749688 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.41 ms +I, [2018-06-21T19:53:36.750450 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.752074 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.23 ms +I, [2018-06-21T19:53:36.752861 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.754230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:36.754438 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.757003 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.757846 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.760325 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-06-21T19:53:36.761145 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.763341 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:36.764838 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.767971 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.73 ms +I, [2018-06-21T19:53:36.768073 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.771393 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.31 ms +I, [2018-06-21T19:53:36.771728 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.775293 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.26 ms +I, [2018-06-21T19:53:36.775339 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.776625 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:36.777365 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.778051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:36.778106 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.779379 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:36.779457 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.780575 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.95 ms +I, [2018-06-21T19:53:36.780621 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.781751 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:36.782231 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.783741 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:36.783962 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.784787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:36.785310 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.786737 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:36.790764 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.791917 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:36.792031 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.793851 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-06-21T19:53:36.794305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.796292 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.1 ms +I, [2018-06-21T19:53:36.796439 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.797452 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.797772 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.798911 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T19:53:36.799088 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.800290 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.800393 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.801142 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:36.801750 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.802370 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:36.802524 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.803570 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.803713 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.804222 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.804278 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.804505 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.804528 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.805323 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.74 ms +I, [2018-06-21T19:53:36.805351 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.805576 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.805643 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.805910 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:36.805935 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.806845 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T19:53:36.807330 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.808710 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:36.808814 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.809651 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:36.810157 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.811261 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:36.811328 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.811690 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.811721 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.812129 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.812159 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.812437 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:36.812462 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.812732 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.812759 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.812973 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:36.812997 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.816662 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.49 ms +I, [2018-06-21T19:53:36.816805 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.817420 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:36.817556 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.820897 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:36.821131 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.821805 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:36.821965 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.824147 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.82 ms +I, [2018-06-21T19:53:36.824414 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.825226 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:36.825320 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.826101 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:36.826214 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.826972 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:36.827205 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.828711 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:36.829193 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.830225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.830325 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.831063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:36.831751 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.832284 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.832410 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.833201 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:36.833316 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.834479 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:36.834703 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.835284 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:36.835322 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.836271 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T19:53:36.836306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.836792 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:36.836826 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.837049 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:36.837083 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.838075 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:36.838166 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.838403 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:36.838433 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.838757 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:36.838797 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.840578 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.11 ms +I, [2018-06-21T19:53:36.840807 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.842224 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:36.842306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.842840 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:36.842884 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.844093 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.02 ms +I, [2018-06-21T19:53:36.844270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.845344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T19:53:36.845449 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.846239 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:36.846383 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.847117 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:36.847272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.848085 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:36.848275 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.849088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:36.849310 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.849840 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.850007 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.850623 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:36.850730 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.851290 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:36.851431 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.851877 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.852036 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.852627 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:36.852725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.853348 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:36.853517 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.854201 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.854365 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.854922 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.855055 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.855667 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:36.855798 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.856682 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.857015 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.857832 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:36.857903 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.858913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:36.859088 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.860349 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:36.860596 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.861815 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:36.861952 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.862858 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:36.863030 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.863970 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.864202 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.865246 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:36.865538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.866023 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.866087 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.866431 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:36.866466 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.866807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.866853 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.867639 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:36.870961 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.873118 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T19:53:36.873497 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.875172 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.29 ms +I, [2018-06-21T19:53:36.875393 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.876034 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.876146 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.876758 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.876806 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.877385 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:36.877653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.878372 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:36.878537 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.879814 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:36.879941 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.880636 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:36.880753 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.881279 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:36.881542 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.882153 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:36.882251 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.882733 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.882853 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.883710 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.883922 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.884402 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.884479 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.884972 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.885061 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.894028 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.76 ms +I, [2018-06-21T19:53:36.896479 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.897203 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.897307 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.897659 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:36.897730 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.898115 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:36.898207 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.898548 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:36.898638 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.899256 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.899911 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.900841 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:36.900955 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.901698 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:36.901809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.902340 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.902543 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.903211 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:36.903346 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.904109 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:36.904496 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.905051 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:36.905142 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.905637 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.905665 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.906053 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.906097 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.907445 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:36.907610 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.909153 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:36.910615 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.912392 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.34 ms +I, [2018-06-21T19:53:36.912458 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.913291 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T19:53:36.913585 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.914185 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.914270 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.914763 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.914889 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.915407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.915500 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.916133 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:36.916272 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.916789 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.916836 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.917942 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T19:53:36.918111 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.919262 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.65 ms +I, [2018-06-21T19:53:36.919497 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.920382 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:36.920588 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.921252 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:36.921391 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.921913 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.922224 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.922737 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.922901 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.923449 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.923591 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.924260 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:36.924436 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.924873 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.925010 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.925429 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:36.925538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.925942 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.926055 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.926572 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.926906 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.929929 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-06-21T19:53:36.930149 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.930900 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:36.931057 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.931946 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.932103 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.933279 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T19:53:36.933498 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.934125 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:36.934276 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.934898 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.935008 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.935591 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.935753 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.936347 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:36.936552 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.937138 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.937273 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.937793 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.937984 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.938531 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:36.938722 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.939452 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:36.939603 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.940328 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:36.940482 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.941435 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:36.941485 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.941843 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.941880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.942110 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:36.942223 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.942476 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:36.942508 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.942788 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:36.942822 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.943084 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:36.943118 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.943407 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.943446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.943770 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.943809 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.944048 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:36.944102 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.944394 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:36.944426 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.944643 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:36.944907 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.945709 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T19:53:36.945855 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.946588 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:36.947030 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.947706 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:36.947846 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.948726 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.948872 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.950308 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:36.950535 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.951221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.951312 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.951807 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.951967 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.952402 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.952540 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.953022 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:36.953131 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.953787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.954251 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.955115 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:36.955237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.955840 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.955964 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.956520 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:36.956699 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.957165 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.957366 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.957931 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:36.958092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.958588 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.958813 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.959464 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.959637 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.962877 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.963092 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.967346 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:36.967534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.969355 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.07 ms +I, [2018-06-21T19:53:36.969595 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.971200 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:36.971413 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.972270 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:36.972788 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.973088 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:36.973151 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.978014 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:36.978055 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.978283 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.978317 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.978493 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:36.978516 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.979482 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T19:53:36.979640 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.980809 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:36.980917 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.981605 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:36.981782 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.982549 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:36.982726 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.984009 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:36.984145 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.984672 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:36.984757 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.985717 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.985822 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.986859 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:36.986991 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.987728 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:36.987953 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.990056 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.13 ms +I, [2018-06-21T19:53:36.990223 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.991296 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.991390 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.991893 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:36.992366 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.992828 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:36.992946 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.993874 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:36.993987 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.994906 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:36.995004 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.995900 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:36.995953 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.996904 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:36.997378 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.997974 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:36.998102 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:36.999344 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:36.999484 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.000244 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:37.000381 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.001852 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:37.001959 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.002738 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:37.002909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.003808 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:37.003938 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.004176 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:37.004198 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.004974 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T19:53:37.005002 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.005274 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:37.005297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.005641 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.005667 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.007555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.56 ms +I, [2018-06-21T19:53:37.007629 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.009183 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:37.009291 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.011775 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-06-21T19:53:37.011909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.013451 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:37.013634 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.017432 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:37.017700 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.018463 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:37.018566 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.019587 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:37.019807 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.020722 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:37.020899 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.021943 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T19:53:37.022086 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.022900 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:37.023100 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.023816 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:37.024016 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.024712 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:37.024881 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.025766 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:37.025975 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.028091 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.62 ms +I, [2018-06-21T19:53:37.028245 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.029803 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.78 ms +I, [2018-06-21T19:53:37.030355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.031823 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.09 ms +I, [2018-06-21T19:53:37.032061 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.033430 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.54 ms +I, [2018-06-21T19:53:37.033538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.034280 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T19:53:37.034937 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.035368 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:37.035460 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.035869 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:37.036507 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.036844 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:37.036880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.037262 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:37.037297 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.038173 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.79 ms +I, [2018-06-21T19:53:37.038209 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.039955 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.57 ms +I, [2018-06-21T19:53:37.040287 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.041504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:37.041575 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.042733 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T19:53:37.042795 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.043376 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:37.043445 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.044929 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:37.045055 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.046225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:37.046380 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.047671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:37.047993 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.049445 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:37.049719 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.050951 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:37.051111 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.051684 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.051774 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.052671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.052719 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.053387 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:37.053562 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.054450 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T19:53:37.054618 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.055234 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.055624 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.056778 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:37.056894 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.057371 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T19:53:37.057508 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.057898 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T19:53:37.058040 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.059240 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:37.059306 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.059820 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:37.059955 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.060874 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T19:53:37.060993 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.061412 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:37.061525 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.062228 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.062313 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.062801 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:37.062919 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.063593 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:37.064260 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.064727 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.064855 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.065056 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:37.065079 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.065279 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:37.065305 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.065467 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:37.065490 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.065635 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:37.065657 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.067036 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:37.067087 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.067320 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:37.067355 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.067559 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:37.067594 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.068633 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:37.071048 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.072535 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-06-21T19:53:37.072626 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.074216 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T19:53:37.074288 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.074545 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:37.074576 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.074895 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:37.074925 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.075105 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:37.075128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.075322 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:37.075364 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.075509 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:37.075532 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.075766 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:37.075794 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.075972 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T19:53:37.075996 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.076156 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:37.076179 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.076446 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:37.076471 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.076671 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T19:53:37.077128 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.077511 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.077538 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.077747 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:37.077781 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.077925 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:37.077971 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.078100 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:37.078121 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.078326 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:37.078351 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.078512 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:37.078534 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.078681 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:37.078740 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.079311 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:37.079452 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.079909 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:37.080037 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.080549 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:37.080623 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.081149 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.081246 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.081746 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:37.081835 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.082368 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:37.082493 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.082929 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:37.083058 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.083660 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T19:53:37.084150 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.084920 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:37.085101 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.085901 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:37.086057 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.087368 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:37.087575 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.089037 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:37.089468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.091068 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:37.091427 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.093570 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.52 ms +I, [2018-06-21T19:53:37.094400 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.095343 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:37.095468 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.095921 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:37.096006 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.096629 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:37.096677 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.097956 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:37.100434 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.101395 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:37.101751 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.102256 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:37.102343 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.102708 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.103200 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.104555 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T19:53:37.104842 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.106092 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.86 ms +I, [2018-06-21T19:53:37.106473 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.107669 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T19:53:37.108012 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.108603 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:37.108653 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.109179 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:37.109302 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.109926 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:37.110000 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.113010 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-06-21T19:53:37.113339 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.115093 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.63 ms +I, [2018-06-21T19:53:37.115268 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.116203 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T19:53:37.116375 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.117230 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:37.117491 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.118121 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:37.118281 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.119011 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T19:53:37.119234 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.120002 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T19:53:37.120216 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.121075 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:37.121254 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.121840 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:37.122100 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.122750 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:37.122880 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.123602 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:37.123790 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.124500 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:37.124695 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.125406 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:37.125515 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.126530 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:37.127620 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.128937 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.59 ms +I, [2018-06-21T19:53:37.129237 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.130121 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T19:53:37.130347 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.130956 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:37.131116 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.131573 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:37.131725 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.132214 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:37.132382 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.132962 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T19:53:37.133012 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.133537 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:37.133600 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.134063 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:37.134100 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.134370 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:37.134399 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.134646 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:37.135100 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.135750 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:37.135819 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.136670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:37.136879 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.138653 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.51 ms +I, [2018-06-21T19:53:37.138912 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.139532 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T19:53:37.139721 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.140271 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:37.140432 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.141041 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:37.141189 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.141739 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:37.141917 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.142706 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T19:53:37.142837 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.143700 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T19:53:37.143970 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.144523 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T19:53:37.144666 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.150787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.26 ms +I, [2018-06-21T19:53:37.151075 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.151982 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:37.152139 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.153176 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.47 ms +I, [2018-06-21T19:53:37.153392 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.154161 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:37.154386 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.155000 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:37.155154 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.155782 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:37.155886 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.156429 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.156517 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.157069 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:37.157209 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.157737 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:37.157915 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.158729 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T19:53:37.158882 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.163670 #1] INFO -- : Inline processing of topic section_change with 1 messages took 4.34 ms +I, [2018-06-21T19:53:37.163733 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.164142 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:37.164171 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.164951 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.7 ms +I, [2018-06-21T19:53:37.164983 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.165238 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:37.165262 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.165520 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:37.165546 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.165787 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:37.165810 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.169052 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.04 ms +I, [2018-06-21T19:53:37.169546 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.170968 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.12 ms +I, [2018-06-21T19:53:37.171025 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.171336 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:37.171369 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.171710 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.171740 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.172755 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T19:53:37.172940 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.176656 #1] INFO -- : Inline processing of topic section_change with 1 messages took 3.44 ms +I, [2018-06-21T19:53:37.176874 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.177492 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T19:53:37.177577 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.178137 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:37.178281 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.178962 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T19:53:37.179062 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.179720 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T19:53:37.179868 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.180338 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.180506 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.180987 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:37.181072 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.181657 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:37.181792 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.182292 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:37.182379 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.182968 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:37.183073 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.183666 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:37.183806 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.184508 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.184587 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.185461 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T19:53:37.185550 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.186550 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:37.187321 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.187986 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:37.188208 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.189813 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T19:53:37.190021 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.190470 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T19:53:37.190590 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.191112 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T19:53:37.191478 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.191901 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T19:53:37.192037 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.193057 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T19:53:37.193985 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.194421 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T19:53:37.194505 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.194715 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T19:53:37.194738 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.194887 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:37.194909 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.195136 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T19:53:37.195161 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.195340 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:37.195362 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.195547 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T19:53:37.195603 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.195771 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T19:53:37.195793 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.196038 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:37.196083 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.196221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T19:53:37.196243 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.196551 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.196578 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.198860 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.13 ms +I, [2018-06-21T19:53:37.198944 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.200225 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.98 ms +I, [2018-06-21T19:53:37.200302 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.201573 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.01 ms +I, [2018-06-21T19:53:37.201622 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.202504 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T19:53:37.202561 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.202849 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T19:53:37.202886 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.205714 #1] INFO -- : Inline processing of topic section_change with 1 messages took 2.61 ms +I, [2018-06-21T19:53:37.205815 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.206221 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:37.206252 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.206433 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T19:53:37.206457 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.206757 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T19:53:37.206807 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.207663 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T19:53:37.207890 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.210151 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.81 ms +I, [2018-06-21T19:53:37.210437 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.211599 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:37.211707 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.212353 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T19:53:37.212446 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.214198 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.39 ms +I, [2018-06-21T19:53:37.214426 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.215740 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.0 ms +I, [2018-06-21T19:53:37.215934 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.217102 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T19:53:37.217199 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.217847 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T19:53:37.218054 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.219476 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T19:53:37.220205 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.220858 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.41 ms +I, [2018-06-21T19:53:37.221558 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.222144 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T19:53:37.222293 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.223072 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T19:53:37.223185 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.224564 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T19:53:37.224688 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.225137 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T19:53:37.225167 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.225397 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T19:53:37.225421 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.226251 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T19:53:37.226300 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.226838 #1] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T19:53:37.226926 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.229340 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T19:53:37.229527 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:37.231330 #1] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-06-21T19:53:37.231462 #1] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T19:53:41.274479 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:53:51.288025 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:54:01.303473 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:54:11.330151 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:54:21.341517 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:54:31.350782 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:54:41.362851 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:54:51.370628 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:55:01.380910 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:55:11.392409 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:55:21.404256 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:55:31.418970 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:55:41.435390 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:55:51.447165 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:56:01.455739 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:56:11.462911 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:56:21.474532 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:56:31.481397 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:56:41.492174 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:56:51.502083 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:57:01.511284 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:57:11.519733 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:57:21.539045 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:57:31.589076 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:57:41.595209 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:57:51.604505 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:58:01.611652 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:58:11.628318 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:58:21.634527 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:58:31.644702 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:58:41.651748 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:58:51.665095 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:59:01.680036 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:59:11.697540 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:59:21.706749 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:59:31.734394 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:59:41.750257 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T19:59:51.771127 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:00:01.777787 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:00:11.785361 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:00:21.798798 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:00:31.804859 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:00:41.814949 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:00:51.840888 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:01:01.854006 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:01:11.863630 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:01:21.871830 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:01:31.888390 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:01:41.896191 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:01:51.903755 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:02:01.910788 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:02:11.918620 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:02:21.926599 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:02:31.941418 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:02:41.948924 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:02:51.956519 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:03:01.963892 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:03:11.976558 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:03:21.999713 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:03:32.020533 #1] INFO -- : Committing offsets: section_change/0:4370 +I, [2018-06-21T20:03:33.709917 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.710909 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.711132 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.711615 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.712397 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.712561 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.712718 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.713486 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.713723 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.714220 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.715256 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.715702 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.716500 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.717321 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.718360 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.718557 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.719119 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.719419 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.720124 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.721092 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.721584 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.721881 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.724189 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.724613 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.724803 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.726722 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.727295 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.727604 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.729101 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.729770 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.730222 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.732992 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.733260 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.733811 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.735264 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.735556 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.736278 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.737513 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.744660 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.745664 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.752384 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.752576 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.752714 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.753818 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.754110 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.754283 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.754882 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.755205 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.755897 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.757109 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.757573 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.758008 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.758651 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.758769 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.758892 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.760403 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.760625 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.760769 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.761923 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.764236 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.764385 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.765131 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.765242 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.765352 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.765851 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.766120 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.766259 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.766904 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.767180 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.767332 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.767947 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.768195 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.768330 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.769924 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.771644 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.772661 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.774176 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.774869 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.775333 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.777274 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.777442 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.777838 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.778972 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.780327 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.780843 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.781756 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.781957 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.782363 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.783239 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.783802 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.788804 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.796202 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.796366 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.796496 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.798351 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.798496 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.799380 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.801083 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.801948 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.802330 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.804337 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.806170 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.807536 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.808876 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.809002 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.809700 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.812117 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.812278 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.812439 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.813415 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.814334 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.814538 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.816589 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.816821 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.816948 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.817749 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.817871 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.817998 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.828711 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.828929 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.829516 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.830734 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.830918 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.831511 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.832728 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.832951 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.833825 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.835368 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.836451 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.836920 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.837608 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.837866 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.838038 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.838773 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.838939 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.839125 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.842594 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.843139 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.843395 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.845206 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.845432 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.845567 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.846354 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.846481 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.846600 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.847248 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.847466 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.847591 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.848251 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.848366 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.848485 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.849214 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.849366 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.849926 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.850615 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.851039 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.851418 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.852080 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.852183 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.852515 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.866318 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.866472 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.866615 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.867210 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.867922 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.868700 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.884524 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.884678 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.884877 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.889059 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.889237 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.889433 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.892449 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.892602 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.892758 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.893985 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.894197 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.895012 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.901660 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.902051 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.902207 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.903709 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.904720 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.905545 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.908249 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.909024 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.911021 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.913139 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.914802 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.915584 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.917596 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.918067 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.919591 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.924347 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.924623 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.924792 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.926179 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.927047 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.927514 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.928088 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.928193 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.928580 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.930482 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.931549 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.933014 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.935073 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.936095 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.936288 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.937117 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.937231 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.937639 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.942410 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.942889 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.944033 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.945048 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.945279 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.945542 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.946337 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.946739 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.946925 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.947888 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.948216 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.948385 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.949337 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.949656 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.949851 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.950596 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.950740 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.950894 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.951673 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.951786 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.951946 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.953280 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.953731 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.953947 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.956093 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.956304 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.956692 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.973949 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.974303 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.974973 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.978474 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.978660 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.978854 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.982817 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.983111 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.983679 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.984890 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.985660 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.986459 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.987192 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.987357 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.987510 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.988279 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.988394 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.988533 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.989152 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.989257 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.989384 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.989961 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.990214 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.990345 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.991133 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.991446 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.991916 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.992879 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.993035 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.993255 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.994137 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.994263 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.994417 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.994897 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.995029 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.995368 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.995950 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.996264 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.996427 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.997129 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.997254 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.997362 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.998287 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.998440 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:33.998627 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:33.999388 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:33.999531 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:34.004681 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:34.006015 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.006545 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:34.007312 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:34.007955 #1] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.008056 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +W, [2018-06-21T20:03:34.008334 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-06-21T20:03:34.031461 #1] ERROR -- : Connection error while fetching messages: Connection error EOFError: EOFError +E, [2018-06-21T20:03:34.036366 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.036444 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.036545 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.037308 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.037376 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.037414 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.037449 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.037495 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.037795 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.038001 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.038392 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.038437 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.038474 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.038535 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.040395 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.040502 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.040566 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.040634 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.040690 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.040894 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.040960 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041012 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041062 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041127 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041232 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041299 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041357 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041437 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041488 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041542 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041592 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.041663 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.044851 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.046885 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.046987 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047084 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047147 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047210 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047327 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047391 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047447 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047518 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047576 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047629 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047678 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047825 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047884 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047943 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.047999 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048059 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048138 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048196 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048299 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048355 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048408 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048495 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048820 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048882 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048940 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.048996 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.049761 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.052432 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060097 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060225 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060381 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060466 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060561 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060626 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060684 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060743 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060859 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.060954 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061016 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061075 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061133 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061202 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061310 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061371 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061409 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061451 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061493 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061544 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061577 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061609 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061642 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061675 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061731 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061871 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.061972 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.062029 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.062082 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.062173 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.062237 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.062354 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.063014 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.063130 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +E, [2018-06-21T20:03:34.063213 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.3:9094 +I, [2018-06-21T20:03:35.008936 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.075286 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.075465 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.075603 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.078397 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.078552 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.078655 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.082191 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.082768 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.082967 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.085999 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.086212 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.086642 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.092438 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.092599 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.092724 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.095767 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.096013 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.096299 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.098987 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.099198 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.099589 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.104710 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.104837 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.104985 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.111834 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.111965 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.112098 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.116858 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.116987 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.117112 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.122066 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.122405 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.122670 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.138533 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.138688 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.138919 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.149314 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.149595 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.149827 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.154832 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.155045 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.155212 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.158782 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.159039 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.159477 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.165799 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.166832 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.168172 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.178517 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.178695 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.180399 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.193223 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.193567 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.193709 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.203139 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.203343 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.203538 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.210638 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.210794 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.210915 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.218086 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.218373 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.218655 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.223288 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.223618 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.223823 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.226356 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.226540 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.226722 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.229215 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.229371 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.229556 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.240139 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.240362 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.240598 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.248080 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.248258 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.248406 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.253744 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.253920 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.254112 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.257794 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.258039 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.258745 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.263738 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.264048 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.264407 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.269792 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.269971 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.270146 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.274814 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.274989 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.275207 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.278464 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.278625 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.278811 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.286046 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.286387 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.286551 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.289603 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.289780 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.289943 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.296470 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.296645 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.296865 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.300201 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.300404 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.300563 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.304949 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.305105 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.305307 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.308556 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.308768 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.308897 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.311484 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.311656 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.311843 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.314629 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.314892 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.315076 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.320409 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.320626 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.320891 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.326221 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.329541 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.330369 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.334095 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.335802 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.335928 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.340881 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.341106 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.341433 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.344567 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.344820 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.344993 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.347559 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.347705 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.347884 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.350616 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.350833 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.351112 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.354443 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.354571 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.354762 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.357551 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.359274 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.359489 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.363076 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.363269 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.363473 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.379891 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.380071 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.380425 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.388996 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.389222 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.389440 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.395578 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.395753 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.395943 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.398894 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.399113 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.399255 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.406919 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.407082 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.407217 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.411928 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.412155 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.412344 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.416985 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.417259 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.417505 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.424387 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.424663 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.424899 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.428697 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.428834 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.429025 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.432097 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.432411 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.432585 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.440759 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.440948 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.441120 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.445127 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.445317 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.445621 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.448210 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.448366 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.448548 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.454403 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.454592 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.454766 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.458424 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.458927 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.459476 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.464232 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.464613 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.465409 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.468710 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.468885 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.469063 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.473435 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.473684 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.473829 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.477142 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.477340 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.479699 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.483678 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.484195 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.485177 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.488457 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.488793 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.488952 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.492559 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.492735 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.492941 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.496492 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.496684 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.496827 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.506709 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.506898 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.507107 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.509467 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.509610 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.509755 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.513233 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.513384 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.513574 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.517153 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.517355 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.517561 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.521134 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.521303 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.521444 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.524684 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.524848 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.525106 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.527953 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.528112 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.528292 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.537817 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.537952 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.538068 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.541561 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.541820 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.541975 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.545155 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.545323 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.545458 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.551252 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.551387 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.551518 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.554636 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.554835 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.554984 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.558451 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.558573 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.558695 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.570326 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.570560 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.570824 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.577059 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.577296 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.577476 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.580408 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.580643 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.580839 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.585675 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.585924 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.586148 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.589168 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.589395 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.589561 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.592863 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.593028 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.593233 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.597082 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.597440 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.597626 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.601854 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.602042 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.602225 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.606560 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.606792 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.607001 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.612090 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.612280 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.612480 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.615228 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.615432 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.615586 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.618433 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.618585 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.618781 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.624082 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.624560 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:35.624755 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:35.627685 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:35.627873 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +W, [2018-06-21T20:03:35.628048 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-06-21T20:03:36.064712 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.065321 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.065521 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.065609 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.065670 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.065786 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.065846 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.065938 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066005 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066062 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066118 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066172 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066228 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066283 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066336 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066441 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066518 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066619 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066680 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066832 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066907 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.066965 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067026 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067080 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067138 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067192 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067248 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067303 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067359 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067467 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067535 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067600 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067659 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067799 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067916 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.067984 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068042 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068097 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068149 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068196 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068242 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068283 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068321 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068358 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068451 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068543 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068614 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068729 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068787 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068838 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068922 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.068983 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069035 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069089 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069140 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069192 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069242 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069292 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069342 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069428 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069487 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069551 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069703 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069763 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069817 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069866 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.069975 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070023 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070066 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070108 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070150 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070190 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070235 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070293 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070336 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070478 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070526 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070570 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070622 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070666 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070702 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070746 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070792 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070854 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070941 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.070986 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071034 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071072 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071218 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071276 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071327 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071395 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071468 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071519 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071611 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071680 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.071767 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.073295 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.073530 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.073620 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.628735 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.632226 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.632393 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.632593 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.636381 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.636548 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.636773 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.641968 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.642183 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.643416 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.646360 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.646567 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.646770 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.650061 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.650316 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.650683 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.654725 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.654932 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.655251 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.667067 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.672494 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.673081 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.677650 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.677855 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.678019 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.682993 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.683247 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.683429 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.687328 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.687545 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.687783 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.691821 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.692057 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.692257 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.703661 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.704931 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.705198 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.710597 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.710793 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.710950 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.714096 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.714321 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.714529 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.717418 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.717538 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.717658 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.721782 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.722083 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.722260 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.726125 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.726806 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.727224 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.733588 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.733777 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.733945 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.739560 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.739727 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.739944 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.748690 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.748821 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.749029 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.752520 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.752731 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.752930 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.757174 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.757308 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.757477 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.761649 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.761877 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.762082 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.776293 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.776468 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.776649 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.780086 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.780321 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.780554 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.785345 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.785581 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.785700 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.788697 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.788850 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.789086 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.793124 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.793289 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.793466 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.797426 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.797598 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.797737 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.801776 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.801963 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.802133 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.806129 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.806321 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.806565 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.811339 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.811574 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.811770 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.817101 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.817251 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.817400 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.823489 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.823708 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.824042 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.828204 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.828449 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.828651 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.832266 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.832421 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.832603 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.838830 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.839077 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.839298 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.846372 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.846552 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.846678 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.849684 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.849847 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.849975 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.852943 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.853215 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.853361 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.856130 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.856293 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.856440 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.859503 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.859714 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.859906 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.872189 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.872341 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.872461 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.875484 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.875676 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.875870 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.879073 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.879336 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.879793 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.888569 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.888726 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.888836 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.896808 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.897245 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.897891 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.901374 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.901607 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.902223 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.905896 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.906096 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.906572 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.912564 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.912746 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.913135 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.916171 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.916444 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.917064 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.922291 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.922540 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.923004 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.927648 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.927838 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.927998 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.932503 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.932816 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.932973 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.936217 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.936401 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.936542 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.940038 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.940311 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.940560 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.944132 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.944307 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.944458 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.947505 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.947649 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.947816 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.951706 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.951919 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.952128 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.955885 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.955999 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.956103 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.962170 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.962290 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.962520 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.967765 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.967992 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.968267 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.972067 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.972265 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.972486 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.977828 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.977979 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.978090 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.982307 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.982556 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.982695 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.987967 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.988129 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.988311 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:36.995038 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:36.995268 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:36.995537 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.004567 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.004774 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.004909 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.008058 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.008200 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.008327 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.011336 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.011529 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.011678 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.015397 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.015576 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.015712 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.019119 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.019272 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.019410 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.028212 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.028363 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.028629 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.032821 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.032968 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.033132 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.036293 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.036474 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.036664 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.040828 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.040996 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.041298 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.047644 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.047762 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.047868 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.053294 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.053448 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.054018 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.114550 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.114746 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.114984 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.125256 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.125479 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.125621 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.133343 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.133511 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.133676 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.136887 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.137061 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.137168 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.143608 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.143775 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.143959 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.149608 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.149798 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.149987 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.153410 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.153605 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.153755 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.157700 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.157819 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.158000 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.164237 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.164740 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.164942 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.168825 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.168999 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.169133 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.173235 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.173352 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.173522 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.176989 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.177122 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.177282 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.181121 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.181302 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.181520 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.186513 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.186671 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.186812 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.189946 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.190104 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.190301 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.194961 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.195118 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.195263 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.201114 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.201287 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.201475 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.230724 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.230939 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.231090 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.234990 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.235106 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.235210 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.245345 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.245556 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.245715 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.249720 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.249839 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:37.249993 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:37.253689 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:37.253856 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +W, [2018-06-21T20:03:37.253972 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-06-21T20:03:38.074390 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.074562 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.074620 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.074750 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.074872 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.074917 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.074956 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.074995 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075035 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075074 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075114 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075179 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075228 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075265 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075303 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075341 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075378 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075428 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075520 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075561 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075604 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075670 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075726 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075767 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075805 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075844 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075914 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075954 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.075992 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076030 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076066 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076111 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076255 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076305 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076344 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076382 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076423 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076462 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076500 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076537 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076574 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076611 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076672 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076733 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076773 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076816 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076903 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076942 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.076983 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077021 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077059 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077097 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077134 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077208 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077249 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077288 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077325 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077370 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077407 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077461 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.077558 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.078541 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.078625 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.078758 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.078825 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.078882 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.078937 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.080959 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.081069 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.081153 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.081508 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.081788 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.081919 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.082193 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.082392 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.082653 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.082798 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.082969 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.083121 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.083471 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.083609 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.083880 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.084030 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.084238 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.084440 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.084972 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.085438 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.085760 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.085972 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.086045 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.086123 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.087932 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.088562 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.088909 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.089050 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.089310 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.089439 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.090283 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.090350 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.090395 #1] ERROR -- : Connection error while fetching messages: Could not connect to any of the seed brokers: +- kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.254669 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.261230 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.261439 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.261632 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.266109 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.266341 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.266573 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.272119 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.272393 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.272633 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.281261 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.281906 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.283211 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.292535 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.292850 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.293259 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.314531 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.314729 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.314936 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.324726 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.324885 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.325208 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.332700 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.332895 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.333058 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.340544 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.340839 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.341022 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.348724 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.348919 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.349079 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.356142 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.356339 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.356501 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.361553 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.361791 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.361933 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.372335 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.372491 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.372629 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.377875 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.378098 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.378303 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.384693 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.384891 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.385098 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.389888 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.390081 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.390260 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.394763 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.395012 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.395249 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.412387 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.412658 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.412904 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.417171 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.417365 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.417707 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.423828 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.424075 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.424314 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.428032 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.428246 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.428478 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.433318 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.433556 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.433771 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.444350 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.444528 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.444692 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.448597 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.448752 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.448899 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.452711 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.452924 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.453149 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.460405 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.460795 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.461271 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.467780 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.468180 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.468375 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.479924 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.480181 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.480472 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.485746 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.486210 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.486748 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.491338 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.491551 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.491731 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.499068 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.499345 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.499587 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.504932 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.505209 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.505766 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.510569 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.510766 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.510933 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.515681 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.516007 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.516212 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.521462 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.521652 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.521844 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.528566 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.528780 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.529005 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.536788 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.536950 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.537102 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.541595 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.541800 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.542003 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.546702 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.546878 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.547016 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.552381 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.552553 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.552757 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.556465 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.556608 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.556724 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.564108 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.564334 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.564554 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.568316 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.568532 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.568688 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.573283 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.573504 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.573684 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.577351 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.577535 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.577688 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.583681 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.583908 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.584061 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.589810 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.590013 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.590160 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.596951 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.597145 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.597298 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.601970 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.602140 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.602316 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.607824 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.608095 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.608295 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.616160 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.616325 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.616533 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.624558 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.624795 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.625086 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.630033 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.630226 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.630413 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.635328 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.635524 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.635720 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.643939 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.644121 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.644287 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.648633 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.648865 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.649047 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.656901 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.657066 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.657186 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.662186 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.662456 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.662670 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.666817 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.667066 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.667243 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.674924 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.675231 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.675446 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.685044 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.685266 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.685474 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.691997 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.692207 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.692396 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.697613 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.697819 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.698001 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.702830 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.703000 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.703968 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.708894 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.709066 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.709253 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.714871 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.715129 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.715307 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.724736 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.724906 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.725088 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.731492 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.731662 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.731893 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.736523 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.736675 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.736846 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.741475 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.741655 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.741844 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.752524 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.752645 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.752855 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.757498 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.757685 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.757995 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.763507 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.763730 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.763909 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.769702 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.769874 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.770042 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.773983 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.774181 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.774405 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.784817 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.784954 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.785101 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.789064 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.789469 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.789771 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.794760 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.794930 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.795081 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.797847 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.798006 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.798126 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.803499 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.803664 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.803848 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.816285 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.816503 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.816641 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.820393 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.820639 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.820798 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.824400 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.824584 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.824700 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.829829 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.830025 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.830277 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.835850 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.836058 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.836213 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.841755 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.841929 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.842141 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.847705 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.847882 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.848191 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.855523 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.855702 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.855930 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.861805 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.862110 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.862306 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.869177 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.869397 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.869609 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.877269 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.877472 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.877690 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.882365 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.882518 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.882703 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.887164 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.887411 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.887688 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.896217 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.896404 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.896584 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.907423 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.907605 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.907795 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.913127 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.913382 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.913528 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.918502 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.919240 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.919468 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.924076 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.924363 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.924525 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.929913 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.930085 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +I, [2018-06-21T20:03:38.930256 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:38.935539 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:38.935743 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +W, [2018-06-21T20:03:38.935916 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +W, [2018-06-21T20:03:39.936377 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +E, [2018-06-21T20:03:40.091602 #1] ERROR -- : Error sending heartbeat: Connection error EOFError: EOFError +I, [2018-06-21T20:03:40.091725 #1] INFO -- : Joining group `notifications_notifications` +E, [2018-06-21T20:03:40.097060 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:40.097202 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:40.937038 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:41.097653 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:41.097807 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:41.103809 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:41.104040 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:41.104126 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:41.938490 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:42.104278 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:42.104424 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:42.111017 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:42.111197 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:42.111280 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:42.938938 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:43.111915 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:43.112046 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:43.116661 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:43.116886 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:43.116957 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:43.940029 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:44.117309 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:44.117485 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:44.123819 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:44.124063 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:44.124151 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:44.941011 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:45.124701 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:45.124946 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:45.129955 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:45.130286 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:45.130371 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:45.941770 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:46.130750 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:46.130921 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:46.139167 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:46.139597 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:46.139730 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:46.944649 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:47.142952 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:47.143720 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:47.149238 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:47.149507 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:47.149572 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:47.944916 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:48.149981 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:48.150138 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:48.155254 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:48.155445 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:48.155504 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:48.945098 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:49.155886 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:49.156093 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:49.163391 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:49.163588 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:49.163675 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:49.945352 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:50.163961 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:50.164164 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:50.168993 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:50.169182 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:50.169272 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:50.946020 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:51.169502 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:51.169657 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:51.186347 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:51.186539 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:51.186585 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:51.946416 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:52.187168 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:52.187291 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:52.194342 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:52.194508 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:52.194550 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:52.947462 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:53.195278 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:53.195420 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:53.199938 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:53.200119 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:53.200170 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:53.948060 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:54.200719 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:54.201230 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:54.208841 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:54.209047 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:54.209093 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:54.948741 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:55.209404 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:55.209795 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:55.215168 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:55.215371 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:55.215420 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:55.948952 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:56.215628 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:56.215881 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:56.221841 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:56.222019 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:56.222068 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:56.952220 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:57.222190 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:57.222378 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:57.226162 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:57.226435 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:57.226524 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:57.952570 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:58.227266 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:58.227434 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:58.234333 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:58.234588 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:58.234784 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:58.953313 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:03:59.234990 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:03:59.235159 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:03:59.239595 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:59.239795 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:03:59.239894 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:03:59.953685 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:00.240091 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:00.240251 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:00.245558 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:00.245766 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:00.246146 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:00.954378 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:01.246493 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:01.246640 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:01.251627 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:01.251857 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:01.251981 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:01.954969 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:02.252407 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:02.252573 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:02.259341 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:02.260358 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:02.261521 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:02.955687 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:03.262127 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:03.262276 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:03.267752 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:03.267920 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:03.267962 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:03.956092 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:04.268267 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:04.268416 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:04.274182 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:04.274432 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:04.274480 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:04.957465 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:05.274757 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:05.274949 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:05.282036 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:05.282322 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:05.282392 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:05.958375 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:06.282950 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:06.283098 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:06.288798 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:06.289113 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:06.289193 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:06.958953 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:07.289988 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:07.290141 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:07.294775 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:07.295032 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:07.295100 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:07.960349 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:08.295721 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:08.295884 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:08.304338 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:08.304732 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:08.304831 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:08.960626 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:09.305168 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:09.305351 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:09.311714 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:09.312078 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:09.312245 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:09.961098 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:10.312856 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:10.313059 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:10.317719 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:10.318023 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:10.318086 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:10.961433 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:11.318315 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:11.319208 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:11.327381 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:11.327610 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:11.327700 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:11.961894 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:12.328150 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:12.328297 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:12.333766 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:12.334051 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:12.334142 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:12.962493 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:13.334760 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:13.335041 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:13.343999 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:13.344234 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:13.344299 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:13.962946 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:14.344618 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:14.344793 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:14.349169 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:14.349376 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:14.349440 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +I, [2018-06-21T20:04:14.683104 #1] INFO -- : Received SIGINT system signal +I, [2018-06-21T20:04:14.683246 #1] INFO -- : Stopping Karafka server 1 +W, [2018-06-21T20:04:14.963142 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:15.349651 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:15.350023 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:15.356516 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:15.356698 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:15.356861 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:15.963451 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:16.357060 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:16.357200 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:16.362889 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:16.363143 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:16.363235 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:16.963867 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:17.363364 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:17.363518 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:17.368228 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:17.368484 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:17.368574 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:17.964463 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:18.369009 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:18.369142 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:18.374821 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:18.374995 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:18.375068 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:18.964717 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:19.375233 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:19.375474 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:19.381193 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:19.381398 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:19.381499 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:19.965324 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:20.381745 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:20.382009 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:20.391898 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:20.392114 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:20.392164 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:20.966075 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:21.392315 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:21.392552 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:21.402659 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:21.403322 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:21.403410 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:21.966505 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:22.403566 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:22.404050 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:22.410322 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:22.410516 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:22.410572 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:22.966869 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:23.411050 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:23.411184 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:23.417169 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:23.417475 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:23.417545 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:23.967157 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:24.418333 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:24.418956 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:24.423779 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:24.424013 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:24.424081 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:24.967473 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:25.424248 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:25.424368 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:25.429473 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:25.429659 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:25.429735 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:25.968067 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:26.429916 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:26.430114 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:26.437864 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:26.438165 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:26.438238 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:26.968625 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:27.438536 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:27.438754 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:27.443201 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:27.443428 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:27.443488 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:27.969185 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:28.444096 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:28.444245 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:28.449485 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:28.449689 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:28.449826 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:28.969666 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:29.450137 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:29.450300 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:29.458082 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:29.459016 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:29.459202 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:29.970298 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:30.459330 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:30.459505 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:30.465276 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:30.465502 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:30.465602 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:30.970794 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:31.466550 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:31.466745 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:31.478257 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:31.478876 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:31.479684 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:31.971209 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:32.480207 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:32.480419 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:32.487845 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:32.488218 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:32.488283 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:32.972324 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:33.489021 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:33.489532 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:33.494904 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:33.495185 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:33.495248 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:33.972930 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:34.495597 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:34.495807 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:34.500364 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:34.500585 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:34.500642 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:34.974099 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:35.501129 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:35.501322 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:35.507782 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:35.508027 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:35.508115 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:35.975365 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:36.508227 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:36.508403 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:36.515203 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:36.515455 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:36.515521 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:36.975560 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:37.515708 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:37.516012 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:37.522745 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:37.522926 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:37.523009 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:37.976288 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:38.523115 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:38.523285 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:38.529241 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:38.529460 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:38.529525 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:38.976759 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:39.529960 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:39.530176 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:39.538995 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:39.539283 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:39.539361 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:39.976988 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:40.539588 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:40.539779 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:40.545962 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:40.546213 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:40.546274 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:40.978066 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:41.546532 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:41.546747 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:41.553462 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:41.553807 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:41.553857 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:41.978548 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:42.553969 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:42.554164 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:42.559312 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:42.559502 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:42.559618 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:42.979634 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:43.560090 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:43.560227 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:04:43.565230 #1] ERROR -- : Failed to connect to kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:43.565440 #1] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: getaddrinfo: Name does not resolve +E, [2018-06-21T20:04:43.565495 #1] ERROR -- : Connection error while trying to join group `notifications_notifications`; retrying... +W, [2018-06-21T20:04:43.980031 #1] WARN -- : Reached max fetcher queue size (100), sleeping 1s +I, [2018-06-21T20:04:44.566067 #1] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:04:44.566209 #1] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T20:14:15.197261 #5] INFO -- : New topics added to target list: section_change +I, [2018-06-21T20:14:15.197345 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:14:15.199684 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:15.199829 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:20.200518 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-06-21T20:14:20.201380 #5] INFO -- : New topics added to target list: section_change +I, [2018-06-21T20:14:20.201425 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:14:20.202540 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:20.202682 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:25.208426 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-06-21T20:14:25.209326 #5] INFO -- : New topics added to target list: section_change +I, [2018-06-21T20:14:25.209374 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:14:25.210015 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:25.210122 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:30.215126 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-06-21T20:14:30.216163 #5] INFO -- : New topics added to target list: section_change +I, [2018-06-21T20:14:30.216239 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +E, [2018-06-21T20:14:30.216969 #5] ERROR -- : Failed to connect to kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:30.217116 #5] ERROR -- : Failed to fetch metadata from kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +E, [2018-06-21T20:14:35.217531 #5] ERROR -- : Client fetch loop error: Could not connect to any of the seed brokers: +- kafka://kafka:9094: Connection refused - connect(2) for 172.18.0.12:9094 +I, [2018-06-21T20:14:35.218956 #5] INFO -- : New topics added to target list: section_change +I, [2018-06-21T20:14:35.219037 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T20:14:36.844546 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-06-21T20:14:36.844693 #5] INFO -- : Joining group `notifications_notifications` +I, [2018-06-21T20:14:36.940950 #5] INFO -- : Will fetch at most 1048576 bytes at a time per partition from section_change +I, [2018-06-21T20:14:36.941138 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T20:14:37.099834 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-06-21T20:14:37.099952 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:38.100901 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:39.102405 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:40.105561 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:41.112415 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:42.112853 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:43.113255 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:44.132298 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:45.152287 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:46.153685 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:47.159756 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:48.161456 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:49.162682 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:50.163025 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:51.163325 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:51.243230 #5] INFO -- : Joined group `notifications_notifications` with member id `notifications-53a70114-2075-4264-af50-25e7b68a0a9f` +I, [2018-06-21T20:14:51.243277 #5] INFO -- : Chosen as leader of group `notifications_notifications` +I, [2018-06-21T20:14:52.163571 #5] INFO -- : There are no partitions to fetch from, sleeping for 1s +I, [2018-06-21T20:14:52.243830 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T20:14:52.267614 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-06-21T20:14:52.621134 #5] INFO -- : Partitions assigned for `section_change`: 0 +I, [2018-06-21T20:14:53.163986 #5] INFO -- : Seeking section_change/0 to offset 0 +I, [2018-06-21T20:14:53.164113 #5] INFO -- : New topics added to target list: section_change +I, [2018-06-21T20:14:53.164149 #5] INFO -- : Fetching cluster metadata from kafka://kafka:9094 +I, [2018-06-21T20:14:53.198169 #5] INFO -- : Discovered cluster metadata; nodes: kafka:9094 (node_id=1001) +I, [2018-06-21T20:14:58.842527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 15.63 ms +I, [2018-06-21T20:14:58.842580 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.842652 #5] INFO -- : Committing offsets with recommit: section_change/0:1 +I, [2018-06-21T20:14:58.911533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:14:58.911606 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.912020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:14:58.912088 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.913081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:14:58.913142 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.913529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:14:58.913583 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.913953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:14:58.914011 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.935578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 21.38 ms +I, [2018-06-21T20:14:58.935646 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.936027 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:14:58.936100 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.936387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:14:58.936419 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.936811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:14:58.936845 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.938452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:14:58.938526 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.938881 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:14:58.938914 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.939227 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:14:58.939260 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:14:58.939586 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:14:58.939620 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.946347 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:15:00.946471 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.947032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:00.947073 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.947465 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:00.947565 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.948100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T20:15:00.948288 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.948604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:00.948636 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.948979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:00.949012 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.949360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:15:00.949393 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.954419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.81 ms +I, [2018-06-21T20:15:00.954475 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.955444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-06-21T20:15:00.955506 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.968831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.56 ms +I, [2018-06-21T20:15:00.968899 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.969219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:00.969242 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.972246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.59 ms +I, [2018-06-21T20:15:00.972381 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:00.991517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.55 ms +I, [2018-06-21T20:15:00.991621 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:01.002962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:15:01.003095 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:01.003787 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:15:01.003835 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:01.015218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:01.015260 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:01.015527 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:01.015576 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.026151 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:03.026194 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.026868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:03.026900 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.027107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:03.027449 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.027683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:03.027708 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.028239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T20:15:03.028267 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.028444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:03.028467 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.029039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:03.029090 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.029785 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T20:15:03.029914 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.033770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:03.033812 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.034801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T20:15:03.034834 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.035036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:03.035963 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.036272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:03.036301 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.036467 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:15:03.036489 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.041167 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:03.041224 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.041502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:03.042100 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.042459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:03.042501 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:03.051900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T20:15:03.051943 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.055007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:05.055076 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.055979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.75 ms +I, [2018-06-21T20:15:05.064201 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.068382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.79 ms +I, [2018-06-21T20:15:05.068444 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.069670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:15:05.069707 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.070433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T20:15:05.070468 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.070804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:05.070833 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.082377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:15:05.082442 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.082775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:05.082805 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.083406 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T20:15:05.098412 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.098973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:15:05.099012 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.099312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:05.099346 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.099599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:05.100307 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:05.100766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:15:05.100810 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.101664 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:15:07.101724 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.102060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:15:07.108077 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.108419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:07.108445 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.108700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:07.108726 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.108983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:07.109009 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.109285 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:07.109310 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.109493 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:07.109516 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.109742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:07.109767 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.109953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:07.109976 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.110234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:07.110260 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.110473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:07.110499 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:07.110674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:07.110912 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.111378 #5] INFO -- : Committing offsets: section_change/0:73 +I, [2018-06-21T20:15:09.124691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:15:09.124747 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.125095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:09.125136 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.125434 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:09.125470 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.125775 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:09.125814 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.126137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:09.126178 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.126488 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:09.126526 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.132360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.63 ms +I, [2018-06-21T20:15:09.132445 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.144502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.21 ms +I, [2018-06-21T20:15:09.144579 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.152078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.32 ms +I, [2018-06-21T20:15:09.152345 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.152895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T20:15:09.152942 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:09.153670 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T20:15:09.153741 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.155867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:15:11.155957 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.173417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:11.173459 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.174695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.05 ms +I, [2018-06-21T20:15:11.174750 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.176734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.75 ms +I, [2018-06-21T20:15:11.176782 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.177133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:11.177176 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.177382 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:11.177404 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.177619 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:11.177643 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.177908 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:11.177942 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.178156 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:11.178180 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.178360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:11.178381 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:11.178589 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:11.178613 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.183704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:15:13.183782 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.193991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.0 ms +I, [2018-06-21T20:15:13.194100 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.194531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:13.194591 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.194920 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:13.194957 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.195290 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:13.195342 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.195693 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:13.195729 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.199895 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.93 ms +I, [2018-06-21T20:15:13.199980 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.200582 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T20:15:13.200660 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:13.202134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:13.202172 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.209448 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:15.209504 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.209876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:15.209914 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.210218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:15.210257 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.210461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:15.210483 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.227899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.28 ms +I, [2018-06-21T20:15:15.227962 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.228451 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:15:15.228488 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.228848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:15:15.228879 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.229214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:15.229244 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.236481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.13 ms +I, [2018-06-21T20:15:15.236525 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:15.236828 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:15.236877 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.240651 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:15:17.240723 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.241131 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:15:17.241189 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.241557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:17.241596 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.241833 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:17.241856 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.242069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:17.242104 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.242417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:17.242454 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.260269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.63 ms +I, [2018-06-21T20:15:17.260354 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.260766 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:15:17.260812 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.261092 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:17.261126 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.261320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:17.261359 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.261533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:17.261629 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:17.261885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:17.261921 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.262598 #5] INFO -- : Committing offsets: section_change/0:126 +I, [2018-06-21T20:15:19.264750 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:15:19.264802 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.265056 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:19.265106 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.265333 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:19.265368 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.265555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:19.265577 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.265847 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:19.265874 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.266093 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:19.266117 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.273529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.28 ms +I, [2018-06-21T20:15:19.273571 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.273844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:19.273869 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.274798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:19.274831 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.275040 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:19.275063 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.275292 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:19.275317 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.275507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:19.275542 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.275746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:19.275770 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:19.275955 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:19.275990 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.277319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T20:15:21.277483 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.278082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:15:21.278150 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.278618 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:15:21.278674 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.295311 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.37 ms +I, [2018-06-21T20:15:21.295388 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.295719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:21.295746 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.295967 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:21.295989 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.296229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:21.296262 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.296457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:21.296479 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:21.296691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:21.296716 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.307548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:23.307593 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.307880 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:23.307922 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.308166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:23.308194 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.308383 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:23.308405 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.308644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:23.308671 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.335063 #5] INFO -- : Inline processing of topic section_change with 1 messages took 26.23 ms +I, [2018-06-21T20:15:23.335130 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.335435 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:23.335459 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.335720 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:23.341667 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.342006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:23.342062 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:23.342395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:23.342434 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.343192 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:15:25.343272 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.343662 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:25.343701 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.344030 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:25.344090 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.344391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:25.344417 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.344583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:25.344632 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.344824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:15:25.344846 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.345041 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:25.345063 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.345262 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:25.345307 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:25.345500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:25.345549 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.348717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T20:15:27.348796 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.349002 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:27.349099 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.349341 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:27.349365 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.349606 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:27.349646 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.349965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:27.350002 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.350258 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:27.350361 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.350679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:27.350709 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.351084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:15:27.351133 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.351444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:27.351483 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.351814 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:27.351874 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.352209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:27.352247 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:27.352520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:27.352621 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:29.353439 #5] INFO -- : Committing offsets: section_change/0:180 +I, [2018-06-21T20:15:29.377086 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T20:15:29.377191 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:29.377711 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:15:29.377830 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:29.378223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:29.378409 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:29.378951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T20:15:29.379007 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:29.379682 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T20:15:29.385006 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:29.385522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:15:29.385588 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:29.385975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:15:29.386017 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:31.388729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:15:31.388800 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:31.389318 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T20:15:31.389366 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:31.391247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:15:31.391300 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:31.391672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:15:31.391710 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:31.393674 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.79 ms +I, [2018-06-21T20:15:31.393743 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:31.394216 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T20:15:31.394258 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:33.418536 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T20:15:33.418616 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:33.419034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:15:33.419084 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:33.419555 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:15:33.419605 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:33.425019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.21 ms +I, [2018-06-21T20:15:33.425076 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:33.425449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:33.425518 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:33.425798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:33.425832 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:35.433366 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T20:15:35.433449 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:35.433934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:15:35.433973 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:35.435574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:15:35.436454 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:35.436890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:35.436928 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:35.438247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.15 ms +I, [2018-06-21T20:15:35.438282 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:35.438546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:35.438580 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:37.465039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.38 ms +I, [2018-06-21T20:15:37.465112 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:37.465413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:37.465436 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:37.465648 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:37.465696 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:37.465888 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:37.465909 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:37.466078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:37.466124 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:37.466470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:37.466502 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:39.466675 #5] INFO -- : Committing offsets: section_change/0:211 +I, [2018-06-21T20:15:39.474306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:15:39.474348 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:39.474570 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:39.474622 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:39.474825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:39.474867 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:39.475050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:39.475072 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:39.475310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:39.475333 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.476660 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T20:15:41.476720 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.477102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:15:41.477172 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.477461 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:41.477523 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.477825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:41.477872 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.478715 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.71 ms +I, [2018-06-21T20:15:41.478785 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.486102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.08 ms +I, [2018-06-21T20:15:41.486188 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.486712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:15:41.486757 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.487128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:41.487220 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.487481 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:41.487563 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.487869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:41.487938 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:41.488273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:41.488312 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.492568 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:15:43.492628 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.493033 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:43.493089 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.493378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:43.493416 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.494233 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:43.494286 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.494546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:43.494580 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.494807 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:43.494841 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.496125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.14 ms +I, [2018-06-21T20:15:43.496198 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.511944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:43.512103 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.512522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:15:43.512598 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.512885 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:43.512924 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.513202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:43.513242 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:43.513463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:43.513494 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.521157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:45.521231 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.521441 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:45.521482 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.521709 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:45.521736 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.521952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:45.521985 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.522236 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:45.522264 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.522978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T20:15:45.523032 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.523381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:45.523409 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.523755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:45.523819 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:45.524100 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:45.524135 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.526911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:47.526954 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.527189 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:47.527215 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.527403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:47.527426 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.527637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:47.527663 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.527840 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:15:47.527885 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.528062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:47.528133 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.528635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:47.528670 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:47.528872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:15:47.528918 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.535424 #5] INFO -- : Committing offsets: section_change/0:256 +I, [2018-06-21T20:15:49.550389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.39 ms +I, [2018-06-21T20:15:49.550469 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.556710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.63 ms +I, [2018-06-21T20:15:49.557063 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.558377 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.97 ms +I, [2018-06-21T20:15:49.558437 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.559034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:49.559077 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.559553 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:49.559763 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.560326 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:15:49.560464 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.561007 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T20:15:49.561047 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.561444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:49.561478 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.561823 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:49.561886 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.562169 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:15:49.562224 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.562710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:15:49.562823 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.563252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:15:49.563282 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.616278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 28.03 ms +I, [2018-06-21T20:15:49.616322 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:49.616615 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:49.616641 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.617824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.68 ms +I, [2018-06-21T20:15:51.619579 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.625046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:15:51.625115 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.625412 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:51.625448 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.625722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:51.625779 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.625998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:51.626039 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.626242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:15:51.626266 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.626450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:51.626487 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.626653 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:15:51.626674 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.626901 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:51.626936 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.652282 #5] INFO -- : Inline processing of topic section_change with 1 messages took 25.18 ms +I, [2018-06-21T20:15:51.652393 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.652932 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:15:51.652980 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.653312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:51.653369 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.653668 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:51.653710 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:51.654067 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:15:51.654103 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:53.669801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:15:53.669862 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:53.670265 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:15:53.670308 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:53.670640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:15:53.670676 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:53.671025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:53.671058 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:53.671360 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:53.671415 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:53.671683 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:53.671714 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:53.714044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:15:53.714247 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:55.722950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.06 ms +I, [2018-06-21T20:15:55.722997 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:55.723348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:55.723378 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:55.723603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:55.723625 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:55.723874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:15:55.723899 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:55.724105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:15:55.724127 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:55.724391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:55.724415 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:57.725152 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:15:57.725193 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:57.725419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:15:57.725442 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:57.725713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:15:57.725738 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:57.725966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:15:57.725988 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:57.756353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T20:15:57.756410 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:59.791349 #5] INFO -- : Committing offsets: section_change/0:302 +I, [2018-06-21T20:15:59.808202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T20:15:59.808297 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:59.808887 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:15:59.808938 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:59.809390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:15:59.809440 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:15:59.809900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:15:59.809946 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.810921 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:01.811006 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.811288 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:01.811311 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.814704 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.26 ms +I, [2018-06-21T20:16:01.814796 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.816106 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T20:16:01.816374 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.818108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T20:16:01.818166 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.818446 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:01.818512 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.818753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:01.818777 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:01.824410 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:01.824452 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.844964 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:03.845014 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.845231 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:03.845261 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.845468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:03.845500 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.845705 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:03.845727 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.845985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:03.846018 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.853772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.65 ms +I, [2018-06-21T20:16:03.853814 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.855145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-06-21T20:16:03.855178 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.856788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-06-21T20:16:03.856865 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.858644 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.85 ms +I, [2018-06-21T20:16:03.858703 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.869726 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.92 ms +I, [2018-06-21T20:16:03.870219 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.898408 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T20:16:03.898466 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:03.898867 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:03.898911 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.902371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:16:05.902422 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.902719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:05.902753 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.902996 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:05.903044 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.903323 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:05.907157 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.908894 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.88 ms +I, [2018-06-21T20:16:05.909083 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.911418 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.91 ms +I, [2018-06-21T20:16:05.911471 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.911758 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:05.911782 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.912034 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:05.912057 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.912272 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:05.924140 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.924652 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:05.924692 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:05.925014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:05.925047 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.926050 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:07.926123 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.926349 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:07.926373 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.926592 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:07.926619 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.926869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:07.926893 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.932141 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:07.932208 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.932548 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:07.933131 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.933400 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:07.933424 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.933629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:07.933655 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.933836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:07.933857 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.934048 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:07.934069 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.934322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:07.934346 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.935396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:07.935445 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.935822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:07.935852 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.936061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:07.936367 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.936637 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:07.936664 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.936889 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:07.936913 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.952585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:16:07.952670 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.953044 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:07.953077 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.953381 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:07.953414 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.953692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:07.953747 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.954014 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:07.954046 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.954339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:07.954388 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.954657 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:07.954696 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.954973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:07.955005 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.955253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:07.955279 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.955463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:07.955491 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.955722 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:07.955756 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.956070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:07.968821 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.971639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.53 ms +I, [2018-06-21T20:16:07.971753 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.972146 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:07.972255 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.972502 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:07.972528 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.972827 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:07.972863 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.973082 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:07.973106 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.973389 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:07.973422 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.973692 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:07.982224 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.982608 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:07.982636 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:07.982917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:07.982944 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.983403 #5] INFO -- : Committing offsets: section_change/0:374 +I, [2018-06-21T20:16:09.986440 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:16:09.986538 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.986946 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:09.986990 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.987276 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:09.987399 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.993443 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.9 ms +I, [2018-06-21T20:16:09.993493 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.993760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:09.993784 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.993990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:09.994014 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.994214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:09.994236 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.994453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:09.994477 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.994697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:09.994719 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.994981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:09.995013 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.995213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:09.995237 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.996317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.96 ms +I, [2018-06-21T20:16:09.996446 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:09.996818 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:09.997658 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:12.014099 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T20:16:12.014237 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:12.014825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.36 ms +I, [2018-06-21T20:16:12.014917 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:12.015281 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:12.015317 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:12.015650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:12.015685 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:12.015973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:12.016003 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:12.017142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:12.017193 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:14.019078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:14.019191 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:14.019447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:14.019470 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:14.019767 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:14.019804 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:14.020232 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:14.020293 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:14.029081 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.6 ms +I, [2018-06-21T20:16:14.029145 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:14.029503 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:14.029530 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:16.032486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:16:16.032548 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:16.032902 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:16.032998 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:16.034194 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T20:16:16.034308 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:16.034874 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:16.036495 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:16.038603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.8 ms +I, [2018-06-21T20:16:16.038670 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:16.039037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:16.039071 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:16.039405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:16.039606 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:18.043414 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:16:18.043527 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:18.043870 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:18.043908 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:18.057270 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:16:18.057329 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:18.057679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:18.057719 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:18.058055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:18.058102 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:18.058557 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:16:18.058590 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.058999 #5] INFO -- : Committing offsets: section_change/0:412 +I, [2018-06-21T20:16:20.073460 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:16:20.073560 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.074322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.53 ms +I, [2018-06-21T20:16:20.074466 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.074990 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:20.075039 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.075459 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:20.075500 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.084119 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.43 ms +I, [2018-06-21T20:16:20.087055 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.100058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.74 ms +I, [2018-06-21T20:16:20.100154 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.100613 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:20.100688 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.100962 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:20.100995 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:20.101286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:20.101348 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.102248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.44 ms +I, [2018-06-21T20:16:22.102332 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.103016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T20:16:22.103085 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.103699 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T20:16:22.103745 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.104309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:22.104353 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.104798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:22.104841 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.105218 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:22.105259 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.105678 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:22.105721 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.106217 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:16:22.106259 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.106630 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:22.110266 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.111768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T20:16:22.111814 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.118343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:16:22.118457 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.118854 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:22.118940 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.119289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:22.119350 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.119603 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:22.119651 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.119884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:22.119941 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.124037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:22.124604 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.125529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T20:16:22.125702 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.126329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T20:16:22.126391 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.128571 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.98 ms +I, [2018-06-21T20:16:22.128632 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.129016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:22.129090 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.129442 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:22.134475 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.141098 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.0 ms +I, [2018-06-21T20:16:22.141188 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.141667 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:22.141777 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.142113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:22.142157 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.142500 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:22.142529 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.143449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:16:22.143497 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.143822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:22.143849 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.144083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:22.144107 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.144427 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:22.144488 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:22.144835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:22.144873 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.160223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T20:16:24.160457 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.161108 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T20:16:24.161186 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.161718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T20:16:24.161755 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.167016 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.32 ms +I, [2018-06-21T20:16:24.167110 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.168380 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.06 ms +I, [2018-06-21T20:16:24.168448 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.169815 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.67 ms +I, [2018-06-21T20:16:24.170271 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.171445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.76 ms +I, [2018-06-21T20:16:24.171489 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.182039 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:16:24.182097 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.182429 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:24.182475 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.182764 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:24.182799 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.183161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:24.183220 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.183542 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:24.183584 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.228546 #5] INFO -- : Inline processing of topic section_change with 1 messages took 44.77 ms +I, [2018-06-21T20:16:24.228630 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.230837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.87 ms +I, [2018-06-21T20:16:24.230910 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.231339 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:24.256534 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.257806 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T20:16:24.257873 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:24.258695 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T20:16:24.258865 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:26.259729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:26.259865 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:26.260128 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:26.260213 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:26.260509 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:26.260534 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:26.260744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:26.260816 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:26.261037 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:26.261060 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:26.261299 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:26.261326 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:28.273160 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:16:28.273271 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:28.273629 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:28.273666 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:28.274212 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T20:16:28.274260 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:28.274585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:28.274621 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:28.275084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:28.275120 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:28.275468 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:28.275502 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:30.275749 #5] INFO -- : Committing offsets: section_change/0:480 +I, [2018-06-21T20:16:30.281157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:30.281198 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:30.281450 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:30.281477 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:30.281727 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:30.281750 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:30.288495 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:30.288541 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:30.288786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:30.288835 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.289458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:32.289500 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.289737 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:32.289792 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.289984 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:32.290005 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.290211 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:32.290232 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.290453 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:32.290477 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.290640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:16:32.290661 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.290863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:16:32.290884 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:32.291097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:32.291119 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:34.300778 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:34.300832 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:34.301143 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:34.301199 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:34.301462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:34.301485 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:34.301773 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:34.301800 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:34.302019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:34.302043 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:34.302248 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:34.302270 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:36.303113 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T20:16:36.303179 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:36.303561 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:36.303600 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:36.329328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 25.52 ms +I, [2018-06-21T20:16:36.329416 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:36.329864 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:36.329907 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:36.330254 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:36.330292 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:36.330599 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:36.330648 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:36.331003 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:36.331050 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.332844 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:38.332888 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.333161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:38.333189 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.333378 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:38.333401 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.333565 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:38.333600 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.333765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:16:38.333787 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.333954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:38.333975 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.347387 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:38.347454 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.347839 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:38.347867 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.348096 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:38.348120 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.348308 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:38.348331 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.348526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:16:38.348578 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.348795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:38.348821 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:38.349024 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:38.349045 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.349775 #5] INFO -- : Committing offsets: section_change/0:519 +I, [2018-06-21T20:16:40.352916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.5 ms +I, [2018-06-21T20:16:40.352988 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.353444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:40.353481 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.353821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:40.353876 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.362102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:16:40.362227 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.362673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:40.362711 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.362988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:40.363021 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.363315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:40.363352 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.363639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:40.363675 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.364499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.69 ms +I, [2018-06-21T20:16:40.364547 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.364877 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:40.364922 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.365208 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:40.365248 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.365569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:40.365602 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.365856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:16:40.365881 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.366035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:16:40.366088 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.366263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:16:40.366285 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.395219 #5] INFO -- : Inline processing of topic section_change with 1 messages took 28.64 ms +I, [2018-06-21T20:16:40.395474 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.396269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T20:16:40.396329 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.396789 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:40.396867 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.397278 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:40.397330 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.397728 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:40.397763 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.398071 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:40.398105 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.398386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:40.398422 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.398696 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:40.398751 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.399053 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:40.399087 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.399390 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:40.399449 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.399745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:40.399807 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.400084 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:40.415534 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:40.416068 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T20:16:40.422495 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.423610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:16:42.423684 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.423981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:42.424065 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.425297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-06-21T20:16:42.425345 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.425719 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:42.425753 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.426094 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:42.426133 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.426456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:42.426489 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.426799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:42.426832 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:42.427148 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:42.427182 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.431291 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:44.431373 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.440598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.66 ms +I, [2018-06-21T20:16:44.440780 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.441563 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.56 ms +I, [2018-06-21T20:16:44.441609 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.441980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:44.442072 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.442371 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:44.442414 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.442813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:44.442856 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.443244 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:44.443287 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:44.443697 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:44.443740 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.444395 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:16:46.444459 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.444776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:46.444815 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.445193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:46.445235 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.445700 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:16:46.470880 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.472533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.33 ms +I, [2018-06-21T20:16:46.472622 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.472977 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:46.473033 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.473247 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:46.473270 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.473531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:46.473570 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:46.473804 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:46.473841 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.475112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T20:16:48.475185 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.476129 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.61 ms +I, [2018-06-21T20:16:48.476193 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.476626 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:48.476660 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.476913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:48.476943 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.477322 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:48.477355 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.478708 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.2 ms +I, [2018-06-21T20:16:48.478740 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.478960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:48.478983 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.479175 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:48.479256 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.479455 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.479485 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.479673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.479694 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.479879 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.479902 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.480077 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:48.480108 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.482998 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:48.483044 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.483988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T20:16:48.484035 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.484388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:48.484414 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.484587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:16:48.484609 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.488176 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.44 ms +I, [2018-06-21T20:16:48.488233 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.488519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:48.488544 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.489223 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.57 ms +I, [2018-06-21T20:16:48.489252 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.489445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:48.489467 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.489645 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.489697 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.489857 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:16:48.489878 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.498263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.21 ms +I, [2018-06-21T20:16:48.498311 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.498583 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.498607 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.498798 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.498820 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.504221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:48.504260 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.504462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.504485 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.504673 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:16:48.504696 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.506601 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.72 ms +I, [2018-06-21T20:16:48.506658 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.520872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:48.520912 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.521138 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:48.521162 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.521343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.521365 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.521593 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:16:48.521641 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.521834 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:48.521857 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.522054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:48.522076 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.522253 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:48.522274 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.522489 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:48.522514 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:48.522706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:48.522727 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.523140 #5] INFO -- : Committing offsets: section_change/0:610 +I, [2018-06-21T20:16:50.530020 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:50.530202 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.530725 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:16:50.530853 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.541817 #5] INFO -- : Inline processing of topic section_change with 1 messages took 10.58 ms +I, [2018-06-21T20:16:50.541882 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.542214 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:50.542242 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.542449 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:16:50.542484 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.542739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:50.542772 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.543004 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:50.543027 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.543298 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:50.543322 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.543541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:50.543563 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:50.543794 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:50.543830 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.544869 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:16:52.544933 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.545286 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:52.545331 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.545712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:52.545747 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.546025 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:52.546088 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.546386 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:52.546421 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.546707 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:52.546744 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.547061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:52.547097 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.547444 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:52.547483 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.547745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:52.547806 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.548135 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:52.548175 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:52.548576 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:52.552247 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.565036 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:54.565149 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.570343 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.99 ms +I, [2018-06-21T20:16:54.570420 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.571344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.64 ms +I, [2018-06-21T20:16:54.571477 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.571960 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:54.572011 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.572319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:54.572346 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.572575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:54.572627 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.572934 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:54.572976 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.573329 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:54.573377 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.573639 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:54.573667 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.579521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.1 ms +I, [2018-06-21T20:16:54.579584 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.586594 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.43 ms +I, [2018-06-21T20:16:54.586723 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.587115 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:54.587150 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.598944 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.4 ms +I, [2018-06-21T20:16:54.599060 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.599498 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:54.599533 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.599811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:54.599839 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.600083 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:54.600109 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.600472 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:16:54.600502 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.600788 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:54.600814 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.602680 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.78 ms +I, [2018-06-21T20:16:54.602825 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.603102 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:54.603127 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.603348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:54.603374 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.603550 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:54.603571 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.606089 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.37 ms +I, [2018-06-21T20:16:54.606173 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.617721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.39 ms +I, [2018-06-21T20:16:54.617778 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.618145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:54.618197 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.618458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:54.618489 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.618736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:54.618767 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.619038 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:54.619070 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.619315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:54.619345 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.619578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:54.619608 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.619842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:54.619933 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.620196 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:54.620232 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.620539 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:54.620574 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.620906 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:54.620944 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.629800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:54.629898 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:54.630334 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:54.630422 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.631559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:16:56.631650 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.632125 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:56.632180 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.633642 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:16:56.633703 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.635199 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-06-21T20:16:56.635299 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.635604 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:56.635636 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.636058 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:56.636103 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.636454 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:16:56.636491 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.636713 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:56.636745 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.637028 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:56.637058 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.637315 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:56.637342 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.637569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:56.637592 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.637848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:56.637883 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.641198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 3.19 ms +I, [2018-06-21T20:16:56.641236 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.650180 #5] INFO -- : Inline processing of topic section_change with 1 messages took 7.94 ms +I, [2018-06-21T20:16:56.650595 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.651054 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:56.651094 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.651436 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:56.651471 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.651790 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:56.651829 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.652085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:56.652117 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.652433 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:56.652469 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.680116 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:56.680233 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.680523 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:56.680574 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.680831 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:56.680857 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.681042 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:16:56.681065 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:56.681249 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:16:56.681271 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.682710 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.37 ms +I, [2018-06-21T20:16:58.682798 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.683274 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:16:58.683312 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.683687 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:58.683723 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.684013 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:58.684044 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.684352 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:58.684385 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.684675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:58.684712 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.692999 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:58.693095 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.693598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:16:58.693646 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.693973 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:58.694017 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.694305 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:16:58.694371 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.694689 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:58.694733 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.695032 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:58.695075 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.695419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:58.695464 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.695753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:16:58.695795 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.696107 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:16:58.696149 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.696496 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:16:58.696540 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.696849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:58.696931 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.697289 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:16:58.697431 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.697923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T20:16:58.698025 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.701587 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.83 ms +I, [2018-06-21T20:16:58.701678 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.702091 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:58.702126 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.702470 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:16:58.702533 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.702811 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:58.702843 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.703142 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:16:58.703173 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.703478 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:58.703509 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.703792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:16:58.703822 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.704133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:16:58.704201 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:16:58.728065 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:16:58.728106 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.728556 #5] INFO -- : Committing offsets: section_change/0:719 +I, [2018-06-21T20:17:00.736458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:17:00.736513 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.736797 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:00.736829 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.737062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:00.737088 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.737340 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:00.737372 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.737610 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:00.737638 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.737899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:00.737937 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.746166 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:17:00.746235 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.746484 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:00.746507 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.746688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:00.746711 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.746890 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:00.746977 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.756072 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:00.756179 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:00.756508 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:00.756561 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.757363 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:02.757411 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.757625 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:02.757648 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.757853 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:02.757909 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.758060 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:17:02.758103 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.758307 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:02.758335 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.758519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:02.758540 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.758712 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:02.758734 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.761301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:17:02.761345 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.769743 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.17 ms +I, [2018-06-21T20:17:02.769811 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.770204 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:02.770249 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.770579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:17:02.770614 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.770884 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:02.770915 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.771239 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:02.771270 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.771585 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:02.771610 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.771849 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:02.771872 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.776666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 4.67 ms +I, [2018-06-21T20:17:02.776745 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:02.777173 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:02.777205 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:04.786825 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.95 ms +I, [2018-06-21T20:17:04.786889 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:04.787261 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:04.787286 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:04.804361 #5] INFO -- : Inline processing of topic section_change with 1 messages took 16.93 ms +I, [2018-06-21T20:17:04.806457 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:04.806997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:17:04.807325 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:04.812688 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.11 ms +I, [2018-06-21T20:17:04.812773 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:04.813252 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:17:04.813310 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:04.814734 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.99 ms +I, [2018-06-21T20:17:04.814832 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:06.815777 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:06.815843 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:06.816306 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:06.816332 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:06.816579 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:06.816601 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:06.816868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:06.816900 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:06.817159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:06.817192 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:06.817447 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:06.817476 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:06.817729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:06.817760 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:08.819402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T20:17:08.819460 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:08.820220 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.46 ms +I, [2018-06-21T20:17:08.820265 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:08.820686 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:08.820737 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:08.821982 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-06-21T20:17:08.822021 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:08.822396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:08.822431 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:08.822800 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:17:08.822859 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:08.823177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:08.823211 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.823762 #5] INFO -- : Committing offsets: section_change/0:769 +I, [2018-06-21T20:17:10.826018 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:17:10.826061 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.826541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:17:10.826705 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.827123 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:17:10.827153 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.827409 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:10.827432 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.827717 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:10.827743 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.827988 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:10.828049 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.846172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 17.93 ms +I, [2018-06-21T20:17:10.846241 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:10.846718 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:17:10.846756 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.847309 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:12.847393 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.848177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.55 ms +I, [2018-06-21T20:17:12.848241 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.849062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.48 ms +I, [2018-06-21T20:17:12.849177 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.856379 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.98 ms +I, [2018-06-21T20:17:12.856456 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.856755 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:12.856780 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.856981 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:12.857003 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.857269 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:12.857295 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:12.857521 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:12.857576 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.861534 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T20:17:14.861588 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.862486 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T20:17:14.862530 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.868824 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.16 ms +I, [2018-06-21T20:17:14.868922 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.869372 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:14.869407 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.869666 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:14.869721 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.882872 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:14.882912 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.883235 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:14.883260 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.883526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:14.883557 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:14.889095 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T20:17:14.889146 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.889876 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:16.889927 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.890161 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:16.890184 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.890405 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:16.890428 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.890655 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:16.890693 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.890947 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:16.890971 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.891198 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:16.891220 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.891445 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:16.891467 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.891736 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:16.891767 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.892000 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:16.892025 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:16.892721 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.58 ms +I, [2018-06-21T20:17:16.892776 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.894066 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:18.894110 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.894428 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:18.894459 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.894729 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:18.894753 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.894948 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:18.894970 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.895177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:18.895200 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.895364 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:18.895386 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.895640 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:18.895667 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.895900 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:18.895924 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.896533 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.52 ms +I, [2018-06-21T20:17:18.901397 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.901929 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:18.901975 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.902245 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:18.902269 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:18.902526 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:18.902552 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.902996 #5] INFO -- : Committing offsets: section_change/0:816 +I, [2018-06-21T20:17:20.913059 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.42 ms +I, [2018-06-21T20:17:20.913111 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.913522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:20.913555 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.913837 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:20.913890 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.914203 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:20.914238 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.914529 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:20.914561 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.915052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:20.915090 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.915475 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:20.915520 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.915975 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:17:20.916020 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:20.916402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:20.916444 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.917114 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:22.917155 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.917504 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:22.917552 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.917738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:22.917760 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.917965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:22.917986 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.924706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.58 ms +I, [2018-06-21T20:17:22.924766 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.925202 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:17:22.925243 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.925631 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:22.925659 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.925922 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:22.925982 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.926168 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:22.926197 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.926714 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:22.926775 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.927273 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:17:22.927313 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.927584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:22.927616 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.927842 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:22.927867 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.928127 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:22.928152 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.928348 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:22.928532 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.945153 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:22.945199 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.945417 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:22.945443 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.945791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:22.945823 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.946005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:22.946033 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:22.946319 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:22.946347 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.960578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:24.960640 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.960848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:24.960886 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.961055 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:24.961076 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.961228 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:17:24.961272 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.961424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:17:24.961445 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.961638 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:24.961662 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.967899 #5] INFO -- : Inline processing of topic section_change with 1 messages took 6.11 ms +I, [2018-06-21T20:17:24.967958 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.968283 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:24.968310 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.968531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:24.968555 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.968754 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:24.968818 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.969062 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:24.969123 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.969301 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:17:24.969322 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.969517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:24.969541 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.969738 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:24.969759 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.969917 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:24.969953 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.970112 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:24.970158 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.970316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:24.970337 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.970525 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:24.970548 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.970809 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:24.970835 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.971302 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T20:17:24.971330 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.971913 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:24.971942 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.972159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:24.972181 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.973159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.89 ms +I, [2018-06-21T20:17:24.973199 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.995611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:24.995656 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.995953 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:24.995986 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.996171 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:24.996193 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.996375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:24.996396 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.996636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:24.996661 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.996835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:24.996867 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:24.997073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:24.997097 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.005401 #5] INFO -- : Inline processing of topic section_change with 1 messages took 8.16 ms +I, [2018-06-21T20:17:25.005467 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.005799 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:25.005842 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.006049 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:25.006081 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.006277 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:25.006299 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.006520 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:25.006553 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.006795 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:25.006836 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.007019 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:25.007051 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.007221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:25.007288 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.007487 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:25.007508 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.007685 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:25.007772 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.008097 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:25.008149 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.020172 #5] INFO -- : Inline processing of topic section_change with 1 messages took 11.75 ms +I, [2018-06-21T20:17:25.020266 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.022635 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.14 ms +I, [2018-06-21T20:17:25.022708 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.023812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.87 ms +I, [2018-06-21T20:17:25.023855 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:25.024134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:25.024175 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.024675 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:17:27.024737 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.025008 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:27.025032 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.025243 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:27.025313 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.025506 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:27.025529 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.025739 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:27.025764 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.025952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:27.025975 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.026190 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:27.026224 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.026457 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:27.026481 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.026801 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:27.026840 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.028423 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.28 ms +I, [2018-06-21T20:17:27.028479 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.046133 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:27.046201 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.046636 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:27.046692 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.047875 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.72 ms +I, [2018-06-21T20:17:27.047948 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.048399 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:17:27.048457 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.049015 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:27.049067 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.049522 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:27.049560 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.049791 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:27.049814 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.049993 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:27.050015 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.051623 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-06-21T20:17:27.051720 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.052835 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:27.052868 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.053073 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:27.053096 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.053328 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:27.053390 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.053584 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:17:27.053607 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.053781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:17:27.053803 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.053985 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:27.054007 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.054193 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:27.054241 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.054426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:27.054464 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.054658 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:27.054680 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:27.054860 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:27.054881 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.055781 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.35 ms +I, [2018-06-21T20:17:29.055826 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.056137 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:29.056297 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.056703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:29.056791 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.060304 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.45 ms +I, [2018-06-21T20:17:29.060385 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.060892 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:29.060938 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.061397 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.28 ms +I, [2018-06-21T20:17:29.061455 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.064317 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.68 ms +I, [2018-06-21T20:17:29.064378 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.064856 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:17:29.064902 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.065312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:17:29.065373 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.065786 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:29.065846 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.066246 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:29.066303 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:29.084005 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.76 ms +I, [2018-06-21T20:17:29.084103 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.084498 #5] INFO -- : Committing offsets: section_change/0:931 +I, [2018-06-21T20:17:31.087482 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.29 ms +I, [2018-06-21T20:17:31.087556 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.087873 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:31.087899 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.088187 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:17:31.088212 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.088424 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:31.088447 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.088691 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:31.088714 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.088910 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:31.088931 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.089177 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:31.089201 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.089419 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:31.091871 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.092229 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:31.092282 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.092485 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:31.092641 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.092952 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:31.092978 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:31.093213 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:31.093274 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:33.093954 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:33.093998 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:33.094267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:33.094291 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:33.094559 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:33.094586 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:33.094822 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:33.094872 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:33.095130 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:33.095960 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.097836 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T20:17:35.097879 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.098209 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:35.098236 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.098531 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:35.098558 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.098793 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:35.098816 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.099045 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:35.099072 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.099267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:35.099312 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.099578 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:35.099607 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:35.104415 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.26 ms +I, [2018-06-21T20:17:35.104473 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.106650 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.44 ms +I, [2018-06-21T20:17:37.106735 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.107256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.31 ms +I, [2018-06-21T20:17:37.107316 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.108170 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.39 ms +I, [2018-06-21T20:17:37.108216 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.108519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:37.108558 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.108752 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:37.108783 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.109043 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:17:37.109075 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.109256 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:37.109282 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.109560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:37.109586 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:37.109812 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:37.109861 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:39.110403 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.25 ms +I, [2018-06-21T20:17:39.110460 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:39.110703 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:39.110737 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:39.110997 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:39.111035 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:39.111330 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.2 ms +I, [2018-06-21T20:17:39.111357 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:39.112353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:39.112412 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:39.112672 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:39.112697 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:39.112966 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:39.112997 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.113244 #5] INFO -- : Committing offsets: section_change/0:972 +I, [2018-06-21T20:17:41.120746 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:17:41.120787 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.120980 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:41.121021 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.121267 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:41.121293 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.121514 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:41.121535 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.121783 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:41.121809 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.122035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:41.122057 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.122312 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:41.122337 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.130310 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:17:41.130366 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:41.130770 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:41.130819 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:43.131742 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T20:17:43.131802 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:43.132426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:43.132464 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:43.132911 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:17:43.133073 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:43.133620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.38 ms +I, [2018-06-21T20:17:43.133668 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:43.134240 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T20:17:43.134280 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:43.134745 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:17:43.134800 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:43.147010 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.32 ms +I, [2018-06-21T20:17:43.147070 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.148756 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:45.148823 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.149069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:45.149112 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.149325 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:45.149346 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.149575 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:45.149597 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.149821 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:45.149872 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.150078 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:45.150099 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.150368 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:45.160174 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.160628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:45.160700 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:45.160923 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:45.160945 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.161878 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:47.161918 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.162145 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:47.162177 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.162388 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:47.162449 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.162663 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:47.162686 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.162956 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:47.162980 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.163210 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:47.163233 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.169978 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.23 ms +I, [2018-06-21T20:17:47.170031 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.170344 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:47.170379 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:47.171404 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.93 ms +I, [2018-06-21T20:17:47.171438 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.173109 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.27 ms +I, [2018-06-21T20:17:49.173182 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.174234 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.9 ms +I, [2018-06-21T20:17:49.174277 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.175052 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T20:17:49.175088 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.175375 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.175410 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.176122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.6 ms +I, [2018-06-21T20:17:49.176157 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.176463 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:17:49.176522 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.177402 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.177445 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.177771 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.19 ms +I, [2018-06-21T20:17:49.179052 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.183951 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:49.184056 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.185560 #5] INFO -- : Inline processing of topic section_change with 1 messages took 1.08 ms +I, [2018-06-21T20:17:49.185629 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.185991 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:49.186037 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.186965 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.73 ms +I, [2018-06-21T20:17:49.187016 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.187841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.187890 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.188868 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.84 ms +I, [2018-06-21T20:17:49.188909 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.189242 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:49.189278 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.190179 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:49.190216 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.191753 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.33 ms +I, [2018-06-21T20:17:49.191851 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.192507 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T20:17:49.199058 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.199760 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.49 ms +I, [2018-06-21T20:17:49.199803 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.200090 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:49.200116 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.200706 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.51 ms +I, [2018-06-21T20:17:49.200733 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.201061 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:49.201090 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.201751 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:49.201778 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.203122 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.91 ms +I, [2018-06-21T20:17:49.203182 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.203517 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.203570 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.206069 #5] INFO -- : Inline processing of topic section_change with 1 messages took 2.32 ms +I, [2018-06-21T20:17:49.206132 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.206462 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.206496 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.207391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T20:17:49.207428 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.207676 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:49.207780 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.214452 #5] INFO -- : Inline processing of topic section_change with 1 messages took 5.91 ms +I, [2018-06-21T20:17:49.214650 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.215332 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:49.215388 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.216598 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.3 ms +I, [2018-06-21T20:17:49.219385 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.219859 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:49.219919 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.220157 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:49.220183 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.220353 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:49.220391 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.220591 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:49.220616 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.220784 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:49.220805 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.220979 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.07 ms +I, [2018-06-21T20:17:49.221011 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.221215 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:49.221238 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.221391 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:49.221430 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.221628 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:49.221652 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.221846 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:49.225897 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.226385 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:49.226424 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.226983 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:49.227035 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.227456 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:49.227505 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.227848 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.228002 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.228297 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:49.228490 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.228765 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:49.228823 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.229105 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:49.229143 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.229426 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.229460 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.229813 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.24 ms +I, [2018-06-21T20:17:49.229852 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.230841 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.77 ms +I, [2018-06-21T20:17:49.231130 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.231499 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:49.231532 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.231866 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:49.235523 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.235950 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:49.236105 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.236413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:49.236452 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.236735 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:49.236769 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.237046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:49.237081 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.237338 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:49.237369 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.237611 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:49.237675 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.237916 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:49.237946 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.238221 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.15 ms +I, [2018-06-21T20:17:49.238254 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.238492 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:49.238523 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.238772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:49.238803 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:49.239070 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:49.239135 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.239386 #5] INFO -- : Committing offsets: section_change/0:1071 +I, [2018-06-21T20:17:51.242554 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.34 ms +I, [2018-06-21T20:17:51.251153 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.251669 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:51.251704 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.252085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:51.252112 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.252320 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.252372 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.252569 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:51.252592 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.252776 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.09 ms +I, [2018-06-21T20:17:51.252799 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.254046 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:51.254073 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.254263 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.254286 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.254473 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.254500 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.254679 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:51.254714 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.254909 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.254949 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.255134 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.255167 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.255369 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.288526 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.288863 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:51.288895 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.289101 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.289131 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.289396 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.289422 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.289620 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.289648 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.289847 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.289878 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.290792 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.82 ms +I, [2018-06-21T20:17:51.290836 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.291085 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.291109 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.291331 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.291356 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.291558 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.291609 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.304259 #5] INFO -- : Inline processing of topic section_change with 1 messages took 12.48 ms +I, [2018-06-21T20:17:51.304322 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.304768 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:51.304811 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.319413 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.21 ms +I, [2018-06-21T20:17:51.319505 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.320006 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.22 ms +I, [2018-06-21T20:17:51.320052 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.330574 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.18 ms +I, [2018-06-21T20:17:51.330616 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.330865 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.330892 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.331076 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.08 ms +I, [2018-06-21T20:17:51.331099 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.331316 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.13 ms +I, [2018-06-21T20:17:51.331341 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.331519 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:51.331542 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.331744 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.331769 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.331949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:51.331971 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.332159 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.1 ms +I, [2018-06-21T20:17:51.332192 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.336541 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:51.336574 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.336772 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.11 ms +I, [2018-06-21T20:17:51.336808 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.337035 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.14 ms +I, [2018-06-21T20:17:51.351777 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.352183 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms +I, [2018-06-21T20:17:51.352213 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.352458 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.16 ms +I, [2018-06-21T20:17:51.352486 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.352681 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.12 ms +I, [2018-06-21T20:17:51.352705 #5] INFO -- : 1 messages on section_change topic delegated to UserConsumer +I, [2018-06-21T20:17:51.352949 #5] INFO -- : Inline processing of topic section_change with 1 messages took 0.17 ms